public static enum DocumentData.Justification extends java.lang.Enum<DocumentData.Justification>
| Enum Constant and Description |
|---|
Center |
LeftAlign |
RightAlign |
| 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 LeftAlign
public static final DocumentData.Justification RightAlign
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