public enum GooseDirection extends java.lang.Enum<GooseDirection>
Enum Constant and Description |
---|
downArrow |
equalsSign |
launchPicker |
leftArrow |
rightArrow |
upArrow |
Modifier and Type | Method and Description |
---|---|
static GooseDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GooseDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GooseDirection leftArrow
public static final GooseDirection rightArrow
public static final GooseDirection equalsSign
public static final GooseDirection upArrow
public static final GooseDirection downArrow
public static final GooseDirection launchPicker
public static GooseDirection[] values()
for (GooseDirection c : GooseDirection.values()) System.out.println(c);
public static GooseDirection 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