public static enum CompiledJson.ObjectFormatPolicy extends Enum<CompiledJson.ObjectFormatPolicy>
| Enum Constant and Description |
|---|
DEFAULT
Inherit the serialization policy from DslJson omitDefaults setting
|
EXPLICIT
Serialize only properties marked with annotations.
|
FULL
Always serialize all properties regardless of DslJson omitDefaults setting
|
MINIMAL
Serialize minimal set of properties (only required ones) regardless of DslJson omitDefaults setting
|
| Modifier and Type | Method and Description |
|---|---|
static CompiledJson.ObjectFormatPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompiledJson.ObjectFormatPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompiledJson.ObjectFormatPolicy DEFAULT
public static final CompiledJson.ObjectFormatPolicy MINIMAL
public static final CompiledJson.ObjectFormatPolicy FULL
public static final CompiledJson.ObjectFormatPolicy EXPLICIT
public static CompiledJson.ObjectFormatPolicy[] values()
for (CompiledJson.ObjectFormatPolicy c : CompiledJson.ObjectFormatPolicy.values()) System.out.println(c);
public static CompiledJson.ObjectFormatPolicy 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.