public enum OutputStyle extends Enum<OutputStyle>
| Enum Constant and Description |
|---|
COMPACT
Compact style.
|
COMPRESSED
Compressed style.
|
EXPANDED
Expanded style.
|
NESTED
Nested style.
|
| Modifier and Type | Method and Description |
|---|---|
static OutputStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputStyle NESTED
public static final OutputStyle EXPANDED
public static final OutputStyle COMPACT
public static final OutputStyle COMPRESSED
public static OutputStyle[] values()
for (OutputStyle c : OutputStyle.values()) System.out.println(c);
public static OutputStyle 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 © 2015 bit3. All rights reserved.