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