public static enum CompiledJson.Behavior extends Enum<CompiledJson.Behavior>
| Enum Constant and Description |
|---|
DEFAULT
Use the object type default behavior
|
FAIL
Always fail on unknown property
|
IGNORE
Cope with unknown properties somehow.
|
| Modifier and Type | Method and Description |
|---|---|
static CompiledJson.Behavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompiledJson.Behavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompiledJson.Behavior DEFAULT
public static final CompiledJson.Behavior FAIL
public static final CompiledJson.Behavior IGNORE
public static CompiledJson.Behavior[] values()
for (CompiledJson.Behavior c : CompiledJson.Behavior.values()) System.out.println(c);
public static CompiledJson.Behavior 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 © 2023. All rights reserved.