public enum MoveWhereFlag extends Enum<MoveWhereFlag>
Enum Constant and Description |
---|
MOVE_AFTER
Move the entry to the position after a given position.
|
MOVE_BEFORE
Move the entry to the position before a given position.
|
MOVE_FIRST
Move the entry first in the list.
|
MOVE_LAST
Move the entry last in the list.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static MoveWhereFlag |
valueOf(int i) |
static MoveWhereFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MoveWhereFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoveWhereFlag MOVE_FIRST
public static final MoveWhereFlag MOVE_BEFORE
public static final MoveWhereFlag MOVE_AFTER
public static final MoveWhereFlag MOVE_LAST
public static MoveWhereFlag[] values()
for (MoveWhereFlag c : MoveWhereFlag.values()) System.out.println(c);
public static MoveWhereFlag 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 nullpublic int getValue()
public static MoveWhereFlag valueOf(int i)