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 property of a JSON object.
      See Also:
    • OBJECT_PROPERTY_SEPARATOR_CHAR

      static final char OBJECT_PROPERTY_SEPARATOR_CHAR
      The character that separates adjacent properties 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 JSON values that are not containers.
    • CONTAINER_NODE_TYPES

      static final List<NodeType> CONTAINER_NODE_TYPES
      The types of nodes that represent JSON values that are containers.