protected static enum DocumentIndenter.Layout extends Enum<DocumentIndenter.Layout>
Enum Constant and Description |
---|
HORIZONTAL |
VERBATIM |
VERTICAL |
Modifier and Type | Method and Description |
---|---|
static DocumentIndenter.Layout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentIndenter.Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentIndenter.Layout VERTICAL
public static final DocumentIndenter.Layout HORIZONTAL
public static final DocumentIndenter.Layout VERBATIM
public static DocumentIndenter.Layout[] values()
for (DocumentIndenter.Layout c : DocumentIndenter.Layout.values()) System.out.println(c);
public static DocumentIndenter.Layout 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 null