java.lang.Object
java.lang.Enum<JsonSerialize.Typing>
edu.internet2.middleware.grouperClientExt.com.fasterxml.jackson.databind.annotation.JsonSerialize.Typing
All Implemented Interfaces:
Serializable, Comparable<JsonSerialize.Typing>, java.lang.constant.Constable
Enclosing class:
JsonSerialize

public static enum JsonSerialize.Typing extends Enum<JsonSerialize.Typing>
Enumeration used with JsonSerialize.typing() property to define whether type detection is based on dynamic runtime type (DYNAMIC) or declared type (STATIC).
  • Enum Constant Details

    • DYNAMIC

      public static final JsonSerialize.Typing DYNAMIC
      Value that indicates that the actual dynamic runtime type is to be used.
    • STATIC

      public static final JsonSerialize.Typing STATIC
      Value that indicates that the static declared type is to be used.
    • DEFAULT_TYPING

      public static final JsonSerialize.Typing DEFAULT_TYPING
      Pseudo-value that is used to indicate "use whatever is default used at higher level".
      Since:
      2.3
  • Method Details

    • values

      public static JsonSerialize.Typing[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static JsonSerialize.Typing valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null