public static enum Arithmetics.Axis extends java.lang.Enum<Arithmetics.Axis>
TabSwitcher
can be moved.Enum Constant and Description |
---|
DRAGGING_AXIS
The axis on which a tab is moved when dragging it.
|
ORTHOGONAL_AXIS
The axis on which a tab is moved, when it is added to or removed from the switcher.
|
X_AXIS
The horizontal axis.
|
Y_AXIS
The vertical axis.
|
Modifier and Type | Method and Description |
---|---|
static Arithmetics.Axis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Arithmetics.Axis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Arithmetics.Axis DRAGGING_AXIS
public static final Arithmetics.Axis ORTHOGONAL_AXIS
public static final Arithmetics.Axis X_AXIS
public static final Arithmetics.Axis Y_AXIS
public static Arithmetics.Axis[] values()
for (Arithmetics.Axis c : Arithmetics.Axis.values()) System.out.println(c);
public static Arithmetics.Axis 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