public enum TextlineOrder extends java.lang.Enum<TextlineOrder> implements org.bridj.IntValuedEnum<TextlineOrder>
| Enum Constant and Description |
|---|
LEFT_TO_RIGHT |
RIGHT_TO_LEFT |
TOP_TO_BOTTOM |
| Modifier and Type | Field and Description |
|---|---|
long |
value |
| Modifier and Type | Method and Description |
|---|---|
static org.bridj.IntValuedEnum<TextlineOrder> |
fromValue(int value) |
java.util.Iterator<TextlineOrder> |
iterator() |
long |
value() |
static TextlineOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextlineOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextlineOrder LEFT_TO_RIGHT
public static final TextlineOrder RIGHT_TO_LEFT
public static final TextlineOrder TOP_TO_BOTTOM
public static TextlineOrder[] values()
for (TextlineOrder c : TextlineOrder.values()) System.out.println(c);
public static TextlineOrder 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 long value()
value in interface org.bridj.ValuedEnum<TextlineOrder>public java.util.Iterator<TextlineOrder> iterator()
iterator in interface java.lang.Iterable<TextlineOrder>public static org.bridj.IntValuedEnum<TextlineOrder> fromValue(int value)