|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CompiledJson.ObjectFormatPolicy>
com.dslplatform.json.CompiledJson.ObjectFormatPolicy
public static enum CompiledJson.ObjectFormatPolicy
Class level tuning for object format serialization behavior. DEFAULT will inherit the runtime setting while other ones will always serialize object in specific way regardless of the runtime setting
| Enum Constant Summary | |
|---|---|
DEFAULT
Inherit the serialization policy from DslJson omitDefaults setting |
|
FULL
Always serialize all properties regardless of DslJson omitDefaults setting |
|
MINIMAL
Serialize minimal set of properties (only required ones) regardless of DslJson omitDefaults setting |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CompiledJson.ObjectFormatPolicy DEFAULT
public static final CompiledJson.ObjectFormatPolicy MINIMAL
public static final CompiledJson.ObjectFormatPolicy FULL
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||