| Enum Constant and Description |
|---|
MULTI_LINE
A JSON object may occupy multiple lines.
|
SINGLE_LINE
One JSON object per line.
|
| Modifier and Type | Method and Description |
|---|---|
static JSON.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JSON.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JSON.Mode SINGLE_LINE
public static final JSON.Mode MULTI_LINE
public static JSON.Mode[] values()
for (JSON.Mode c : JSON.Mode.values()) System.out.println(c);
public static JSON.Mode 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