public enum ItemAction extends java.lang.Enum<ItemAction>
Enum Constant and Description |
---|
Move
Indicates that the item is being moved.
|
None
Indicates no action.
|
ResizeEnd
Indicates that the item's end is being modified.
|
ResizeStart
Indicates that the item's start is being modified.
|
Modifier and Type | Method and Description |
---|---|
static ItemAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemAction None
public static final ItemAction ResizeStart
public static final ItemAction ResizeEnd
public static final ItemAction Move
public static ItemAction[] values()
for (ItemAction c : ItemAction.values()) System.out.println(c);
public static ItemAction 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