enum Corner extends Enum<Corner>
Modifier and Type | Method and Description |
---|---|
static Corner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Corner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Corner URF
public static final Corner UFL
public static final Corner ULB
public static final Corner UBR
public static final Corner DFR
public static final Corner DLF
public static final Corner DBL
public static final Corner DRB
public static Corner[] values()
for (Corner c : Corner.values()) System.out.println(c);
public static 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