public enum FlowDirections extends java.lang.Enum<FlowDirections> implements INativeEnum
Enum Constant and Description |
---|
BottomToTop
The text flows from bottom to top.
|
Default
The default flow direction.
|
RightToLeft
The text flows from right to left.
|
Vertical
The text flows vertically.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Optional<FlowDirections> |
fromNativeValue(int nativeValue) |
java.lang.String |
getConstantName() |
int |
getNativeValue() |
static FlowDirections |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlowDirections[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowDirections Default
public static final FlowDirections RightToLeft
public static final FlowDirections BottomToTop
public static final FlowDirections Vertical
public static FlowDirections[] values()
for (FlowDirections c : FlowDirections.values()) System.out.println(c);
public static FlowDirections 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 nullpublic int getNativeValue()
getNativeValue
in interface INativeEnum
public java.lang.String getConstantName()
getConstantName
in interface INativeEnum
public static java.util.Optional<FlowDirections> fromNativeValue(int nativeValue)