Interface JsonConstants


public interface JsonConstants
This interface defines constants that relate to JSON.
  • Field Details

    • ARRAY_START_CHAR

      static final char ARRAY_START_CHAR
      The character that denotes the start of a JSON array.
      See Also:
    • ARRAY_END_CHAR

      static final char ARRAY_END_CHAR
      The character that denotes the end of a JSON array.
      See Also:
    • ARRAY_ELEMENT_SEPARATOR_CHAR

      static final char ARRAY_ELEMENT_SEPARATOR_CHAR
      The character that separates adjacent elements of a JSON array.
      See Also:
    • OBJECT_START_CHAR

      static final char OBJECT_START_CHAR
      The character that denotes the start of a JSON object.
      See Also:
    • OBJECT_END_CHAR

      static final char OBJECT_END_CHAR
      The character that denotes the end of a JSON object.
      See Also:
    • OBJECT_NAME_VALUE_SEPARATOR_CHAR

      static final char OBJECT_NAME_VALUE_SEPARATOR_CHAR
      The character that separates the name and value of a member of a JSON object.
      See Also:
    • OBJECT_MEMBER_SEPARATOR_CHAR

      static final char OBJECT_MEMBER_SEPARATOR_CHAR
      The character that separates adjacent members of a JSON object.
      See Also:
    • NODE_TYPES

      static final List<NodeType> NODE_TYPES
      The types of nodes that represent JSON values.
    • SIMPLE_NODE_TYPES

      static final List<NodeType> SIMPLE_NODE_TYPES
      The types of nodes that represent simple JSON values.
    • COMPOUND_NODE_TYPES

      static final List<NodeType> COMPOUND_NODE_TYPES
      The types of nodes that represent compound JSON values.
    • NUMBER_TYPES

      static final List<NodeType> NUMBER_TYPES
      The types of nodes that represent JSON numbers.