Package uk.blankaspect.common.json
Interface JsonConstants
public interface JsonConstants
This interface defines constants that relate to JSON.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final char
The character that separates adjacent elements of a JSON array.static final char
The character that denotes the end of a JSON array.static final char
The character that denotes the start of a JSON array.The types of nodes that represent compound JSON values.The types of nodes that represent JSON values.The types of nodes that represent JSON numbers.static final char
The character that denotes the end of a JSON object.static final char
The character that separates adjacent members of a JSON object.static final char
The character that separates the name and value of a member of a JSON object.static final char
The character that denotes the start of a JSON object.The types of nodes that represent simple JSON values.
-
Field Details
-
ARRAY_START_CHAR
static final char ARRAY_START_CHARThe character that denotes the start of a JSON array.- See Also:
-
ARRAY_END_CHAR
static final char ARRAY_END_CHARThe character that denotes the end of a JSON array.- See Also:
-
ARRAY_ELEMENT_SEPARATOR_CHAR
static final char ARRAY_ELEMENT_SEPARATOR_CHARThe character that separates adjacent elements of a JSON array.- See Also:
-
OBJECT_START_CHAR
static final char OBJECT_START_CHARThe character that denotes the start of a JSON object.- See Also:
-
OBJECT_END_CHAR
static final char OBJECT_END_CHARThe character that denotes the end of a JSON object.- See Also:
-
OBJECT_NAME_VALUE_SEPARATOR_CHAR
static final char OBJECT_NAME_VALUE_SEPARATOR_CHARThe 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_CHARThe character that separates adjacent members of a JSON object.- See Also:
-
NODE_TYPES
The types of nodes that represent JSON values. -
SIMPLE_NODE_TYPES
The types of nodes that represent simple JSON values. -
COMPOUND_NODE_TYPES
The types of nodes that represent compound JSON values. -
NUMBER_TYPES
The types of nodes that represent JSON numbers.
-