protected static enum RotatingCalipers.Corner extends Enum<RotatingCalipers.Corner>
| Enum Constant and Description |
|---|
LOWER_LEFT |
LOWER_RIGHT |
UPPER_LEFT |
UPPER_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static RotatingCalipers.Corner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RotatingCalipers.Corner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RotatingCalipers.Corner UPPER_RIGHT
public static final RotatingCalipers.Corner UPPER_LEFT
public static final RotatingCalipers.Corner LOWER_LEFT
public static final RotatingCalipers.Corner LOWER_RIGHT
public static RotatingCalipers.Corner[] values()
for (RotatingCalipers.Corner c : RotatingCalipers.Corner.values()) System.out.println(c);
public static RotatingCalipers.Corner valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null