public enum TextOrientationType extends Enum<TextOrientationType>
| Enum Constant and Description |
|---|
HORIZONTAL |
VERTICAL_ASCENDING |
VERTICAL_DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
static TextOrientationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextOrientationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextOrientationType HORIZONTAL
public static final TextOrientationType VERTICAL_ASCENDING
public static final TextOrientationType VERTICAL_DESCENDING
public static TextOrientationType[] values()
for (TextOrientationType c : TextOrientationType.values()) System.out.println(c);
public static TextOrientationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null