public static enum SimpleExpandAction.Action extends 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(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(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 nullCopyright © 2018. All rights reserved.