Package uk.blankaspect.common.json
Interface JsonConstants
public interface JsonConstants
This interface defines constants that relate to JSON.
-
Field Summary
Modifier 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 JSON values that are containers.The types of nodes that represent JSON values.static final char
The character that denotes the end of a JSON object.static final char
The character that separates the name and value of a property of a JSON object.static final char
The character that separates adjacent properties of a JSON object.static final char
The character that denotes the start of a JSON object.The types of nodes that represent JSON values that are not containers.
-
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 property of a JSON object.- See Also:
-
OBJECT_PROPERTY_SEPARATOR_CHAR
static final char OBJECT_PROPERTY_SEPARATOR_CHARThe character that separates adjacent properties 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 JSON values that are not containers. -
CONTAINER_NODE_TYPES
The types of nodes that represent JSON values that are containers.
-