public static enum SimpleExpandAction.Action extends java.lang.Enum<SimpleExpandAction.Action>
Enum Constant and Description |
---|
LARGER
just make an item larger
|
LARGEST
fully expand an item
|
SMALLER
just make an item smaller
|
SMALLEST
fully shrink an item
|
Modifier and Type | Method and Description |
---|---|
static SimpleExpandAction.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleExpandAction.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleExpandAction.Action LARGEST
public static final SimpleExpandAction.Action LARGER
public static final SimpleExpandAction.Action SMALLER
public static final SimpleExpandAction.Action SMALLEST
public static SimpleExpandAction.Action[] values()
for (SimpleExpandAction.Action c : SimpleExpandAction.Action.values()) System.out.println(c);
public static SimpleExpandAction.Action 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