public enum FormattingPhase extends Enum<FormattingPhase>
| Enum Constant and Description |
|---|
COLLECT |
DOCUMENT |
DOCUMENT_BOTTOM |
DOCUMENT_FIRST |
DOCUMENT_TOP |
| Modifier and Type | Method and Description |
|---|---|
static FormattingPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormattingPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormattingPhase COLLECT
public static final FormattingPhase DOCUMENT_FIRST
public static final FormattingPhase DOCUMENT_TOP
public static final FormattingPhase DOCUMENT
public static final FormattingPhase DOCUMENT_BOTTOM
public static FormattingPhase[] values()
for (FormattingPhase c : FormattingPhase.values()) System.out.println(c);
public static FormattingPhase 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 nullCopyright © 2018. All rights reserved.