public static enum JsonInclude.Include extends Enum<JsonInclude.Include>
JsonInclude
 to define which properties
 of Java Beans are to be included in serialization.| Enum Constant and Description | 
|---|
| ALWAYSValue that indicates that property is to be always included,
 independent of value of the property. | 
| NON_ABSENTValue that indicates that properties are included unless their value
 is:
  null
  "absent" value of a referential type (like Java 8 `Optional`, or
     {link java.utl.concurrent.atomic.AtomicReference}); that is, something
     that would not deference to a non-null value. | 
| NON_DEFAULTValue that indicates that only properties that have values
 that differ from default settings (meaning values they have
 when Bean is constructed with its no-arguments constructor)
 are to be included. | 
| NON_EMPTYValue that indicates that only properties that have values
 that values that are null or what is considered empty are
 not to be included. | 
| NON_NULLValue that indicates that only properties with non-null
 values are to be included. | 
| USE_DEFAULTSPseudo-value used to indicate that the higher-level defaults make
 sense, to avoid overriding inclusion value. | 
| Modifier and Type | Method and Description | 
|---|---|
| static JsonInclude.Include | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static JsonInclude.Include[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final JsonInclude.Include ALWAYS
public static final JsonInclude.Include NON_NULL
public static final JsonInclude.Include NON_ABSENT
public static final JsonInclude.Include NON_EMPTY
Default emptiness is defined for following type:
Collections and Maps,
    method isEmpty() is called;
   Strings, length() is called,
   and return value of 0 indicates empty String (note that String.isEmpty()
   was added in Java 1.6 and as such can not be used by Jackson
   
 Note that this default handling can be overridden by custom
 JsonSerializer implementation: if method isEmpty()
 is overridden, it will be called to see if non-null values are
 considered empty (null is always considered empty).
public static final JsonInclude.Include NON_DEFAULT
 Note that value does not make sense for
 Map types, since they have no default values;
 and if used, works same as ALWAYS.
public static final JsonInclude.Include USE_DEFAULTS
public static JsonInclude.Include[] values()
for (JsonInclude.Include c : JsonInclude.Include.values()) System.out.println(c);
public static JsonInclude.Include 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 © 2014–2015 FasterXML. All rights reserved.