com.fasterxml.jackson.annotation

Enum JsonInclude.Include

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      ALWAYS
      Value that indicates that property is to be always included, independent of value of the property.
      NON_ABSENT
      Value 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_DEFAULT
      Value 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_EMPTY
      Value that indicates that only properties that have values that values that are null or what is considered empty are not to be included.
      NON_NULL
      Value that indicates that only properties with non-null values are to be included.
      USE_DEFAULTS
      Pseudo-value used to indicate that the higher-level defaults make sense, to avoid overriding inclusion value.
    • Enum Constant Detail

      • ALWAYS

        public static final JsonInclude.Include ALWAYS
        Value that indicates that property is to be always included, independent of value of the property.
      • NON_NULL

        public static final JsonInclude.Include NON_NULL
        Value that indicates that only properties with non-null values are to be included.
      • NON_ABSENT

        public static final JsonInclude.Include NON_ABSENT
        Value 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.
        This option is mostly used to work with "Optional"s (Java 8, Guava).
        Since:
        2.6
      • NON_EMPTY

        public static final JsonInclude.Include NON_EMPTY
        Value that indicates that only properties that have values that values that are null or what is considered empty are not to be included. Definition of emptiness is data type specific; see below for details on actual handling.

        Default emptiness is defined for following type:

        • For Collections and Maps, method isEmpty() is called;
        • For Java arrays, empty arrays are ones with length of 0
        • For Java 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
        • For date/time types, if timestamp from Epoch is zero (January 1st, 1970, UTC), value is considered empty.
          • and for other types, null values are excluded but other exclusions (if any).

            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).

      • NON_DEFAULT

        public static final JsonInclude.Include NON_DEFAULT
        Value 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.

        Note that value does not make sense for Map types, since they have no default values; and if used, works same as ALWAYS.

      • USE_DEFAULTS

        public static final JsonInclude.Include USE_DEFAULTS
        Pseudo-value used to indicate that the higher-level defaults make sense, to avoid overriding inclusion value. For example, if returned for a property this would use defaults for the class that contains property, if any defined; and if none defined for that, then global serialization inclusion details.
        Since:
        2.6
    • Method Detail

      • values

        public static JsonInclude.Include[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (JsonInclude.Include c : JsonInclude.Include.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JsonInclude.Include valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null

Copyright © 2014–2015 FasterXML. All rights reserved.