public enum TextOrientation extends java.lang.Enum<TextOrientation>
WARNING: do not modify the name of this class, its package or its members, as it is exposed via direct Java access from 4GL code.
| Enum Constant and Description |
|---|
CUSTOM |
HORIZONTAL |
VERTICAL_LEFT_FACING |
VERTICAL_RIGHT_FACING |
| Modifier and Type | Method and Description |
|---|---|
static TextOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextOrientation VERTICAL_LEFT_FACING
public static final TextOrientation VERTICAL_RIGHT_FACING
public static final TextOrientation HORIZONTAL
public static final TextOrientation CUSTOM
public static TextOrientation[] values()
for (TextOrientation c : TextOrientation.values()) System.out.println(c);
public static TextOrientation 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