public enum RemoveShiftDirection extends Enum<RemoveShiftDirection>
Enum Constant and Description |
---|
LEFT
Shift cells left.
|
UP
Shift cells up.
|
Modifier and Type | Method and Description |
---|---|
static RemoveShiftDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoveShiftDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoveShiftDirection LEFT
public static final RemoveShiftDirection UP
public static RemoveShiftDirection 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 static RemoveShiftDirection[] values()
for (RemoveShiftDirection c : RemoveShiftDirection.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.