public enum CapturePoint extends java.lang.Enum<CapturePoint>
| Enum Constant and Description |
|---|
POINT_A |
POINT_B |
POINT_C |
POINT_D |
POINT_E |
| Modifier and Type | Method and Description |
|---|---|
static CapturePoint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CapturePoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapturePoint POINT_A
public static final CapturePoint POINT_B
public static final CapturePoint POINT_C
public static final CapturePoint POINT_D
public static final CapturePoint POINT_E
public static CapturePoint[] values()
for (CapturePoint c : CapturePoint.values()) System.out.println(c);
public static CapturePoint valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null