public static enum LabelInfo.TextJustify extends java.lang.Enum<LabelInfo.TextJustify>
Enum Constant and Description |
---|
TextCenter |
TextLeft |
TextRight |
Modifier and Type | Method and Description |
---|---|
static LabelInfo.TextJustify |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelInfo.TextJustify[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelInfo.TextJustify TextCenter
public static final LabelInfo.TextJustify TextLeft
public static final LabelInfo.TextJustify TextRight
public static LabelInfo.TextJustify[] values()
for (LabelInfo.TextJustify c : LabelInfo.TextJustify.values()) System.out.println(c);
public static LabelInfo.TextJustify 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