Enum Json.Option

java.lang.Object
java.lang.Enum<Json.Option>
com.sun.faces.util.Json.Option
All Implemented Interfaces:
Serializable, Comparable<Json.Option>, java.lang.constant.Constable
Enclosing class:
Json

public static enum Json.Option extends Enum<Json.Option>
  • Enum Constant Details

    • SKIP_NULL_VALUES

      public static final Json.Option SKIP_NULL_VALUES
      Skip null values in arrays, collections, maps and beans. This may reduce an unnecessarily bloated JSON object.
    • USE_RFC1123_DATE

      public static final Json.Option USE_RFC1123_DATE
      Format dates as RFC1123 via DateTimeFormatter.RFC_1123_DATE_TIME. This may improve compatibility with older web browsers.
  • Method Details

    • values

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

      public static Json.Option 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