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