public enum DeleteShiftDirection extends java.lang.Enum<DeleteShiftDirection>
| Enum Constant and Description |
|---|
Auto
Specifies that the shift direction is based on the shape of the range.
|
Left
Specifies that cells are shifted to the left.
|
Up
Specifies that cells are shifted up.
|
| Modifier and Type | Method and Description |
|---|---|
static DeleteShiftDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeleteShiftDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteShiftDirection Auto
public static final DeleteShiftDirection Up
public static final DeleteShiftDirection Left
public static DeleteShiftDirection[] values()
for (DeleteShiftDirection c : DeleteShiftDirection.values()) System.out.println(c);
public static DeleteShiftDirection 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