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