Package com.fasterxml.jackson.core
Enum Class JsonToken
- All Implemented Interfaces:
Serializable,Comparable<JsonToken>,Constable
Enumeration for basic token types used for returning results
of parsing JSON content.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEND_ARRAY is returned when encountering ']' which signals ending of an Array valueEND_OBJECT is returned when encountering '}' which signals ending of an Object valueFIELD_NAME is returned when a String token is encountered as a field name (same lexical value, different function)NOT_AVAILABLE can be returned ifJsonParserimplementation can not currently return the requested token (usually next one), or even if any will be available, but that may be able to determine this in future.START_ARRAY is returned when encountering '[' which signals starting of an Array valueSTART_OBJECT is returned when encountering '{' which signals starting of an Object value.Placeholder token returned when the input source has a concept of embedded Object that are not accessible as usual structure (of starting withSTART_OBJECT, having values, ending withEND_OBJECT), but as "raw" objects.VALUE_FALSE is returned when encountering literal "false" in value contextVALUE_NULL is returned when encountering literal "null" in value contextVALUE_NUMBER_FLOAT is returned when a numeric token other than integer is encountered: that is, a number that does have floating point or exponent marker in it, in addition to one or more digits (or, for non-textual formats, has internal floating-point representation).VALUE_NUMBER_INT is returned when an integer numeric token is encountered in value context: that is, a number that does not have floating point or exponent marker in it (consists only of an optional sign, followed by one or more digits; or, for binary formats, is indicated as integral number by internal representation).VALUE_STRING is returned when a String token is encountered in value context (array element, field value, or root-level stand-alone value)VALUE_TRUE is returned when encountering literal "true" in value context -
Method Summary
Modifier and TypeMethodDescriptionfinal byte[]final char[]final StringasString()final intid()final booleanfinal booleanfinal booleanMethod that can be used to check whether this token represents a valid non-structured value.final booleanAccessor that is functionally equivalent to:this == JsonToken.END_OBJECT || this == JsonToken.END_ARRAYfinal booleanAccessor that is functionally equivalent to:this == JsonToken.START_OBJECT || this == JsonToken.START_ARRAYstatic StringHelper method for constructing description like "Object value" givenJsonTokenencountered.static JsonTokenReturns the enum constant of this class with the specified name.static JsonToken[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_AVAILABLE
NOT_AVAILABLE can be returned ifJsonParserimplementation can not currently return the requested token (usually next one), or even if any will be available, but that may be able to determine this in future. This is the case with non-blocking parsers -- they can not block to wait for more data to parse and must return something. -
START_OBJECT
START_OBJECT is returned when encountering '{' which signals starting of an Object value. -
END_OBJECT
END_OBJECT is returned when encountering '}' which signals ending of an Object value -
START_ARRAY
START_ARRAY is returned when encountering '[' which signals starting of an Array value -
END_ARRAY
END_ARRAY is returned when encountering ']' which signals ending of an Array value -
FIELD_NAME
FIELD_NAME is returned when a String token is encountered as a field name (same lexical value, different function) -
VALUE_EMBEDDED_OBJECT
Placeholder token returned when the input source has a concept of embedded Object that are not accessible as usual structure (of starting withSTART_OBJECT, having values, ending withEND_OBJECT), but as "raw" objects.Note: this token is never returned by regular JSON readers, but only by readers that expose other kinds of source (like
JsonNode-based JSON trees, Maps, Lists and such). -
VALUE_STRING
VALUE_STRING is returned when a String token is encountered in value context (array element, field value, or root-level stand-alone value) -
VALUE_NUMBER_INT
VALUE_NUMBER_INT is returned when an integer numeric token is encountered in value context: that is, a number that does not have floating point or exponent marker in it (consists only of an optional sign, followed by one or more digits; or, for binary formats, is indicated as integral number by internal representation). -
VALUE_NUMBER_FLOAT
VALUE_NUMBER_FLOAT is returned when a numeric token other than integer is encountered: that is, a number that does have floating point or exponent marker in it, in addition to one or more digits (or, for non-textual formats, has internal floating-point representation). -
VALUE_TRUE
VALUE_TRUE is returned when encountering literal "true" in value context -
VALUE_FALSE
VALUE_FALSE is returned when encountering literal "false" in value context -
VALUE_NULL
VALUE_NULL is returned when encountering literal "null" in value context
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
id
public final int id() -
asString
-
asCharArray
public final char[] asCharArray() -
asByteArray
public final byte[] asByteArray() -
isNumeric
public final boolean isNumeric()- Returns:
Trueif this token isVALUE_NUMBER_INTorVALUE_NUMBER_FLOAT,falseotherwise
-
isStructStart
public final boolean isStructStart()Accessor that is functionally equivalent to:this == JsonToken.START_OBJECT || this == JsonToken.START_ARRAY- Returns:
Trueif this token isSTART_OBJECTorSTART_ARRAY,falseotherwise- Since:
- 2.3
-
isStructEnd
public final boolean isStructEnd()Accessor that is functionally equivalent to:this == JsonToken.END_OBJECT || this == JsonToken.END_ARRAY- Returns:
Trueif this token isEND_OBJECTorEND_ARRAY,falseotherwise- Since:
- 2.3
-
isScalarValue
public final boolean isScalarValue()Method that can be used to check whether this token represents a valid non-structured value. This means allVALUE_xxxtokens; excludingSTART_xxxandEND_xxxtokens as wellFIELD_NAME.- Returns:
Trueif this token is a scalar value token (one ofVALUE_xxxtokens),falseotherwise
-
isBoolean
public final boolean isBoolean()- Returns:
Trueif this token isVALUE_TRUEorVALUE_FALSE,falseotherwise
-
valueDescFor
Helper method for constructing description like "Object value" givenJsonTokenencountered.- Parameters:
t- Token to get description for- Returns:
- String description of given token
- Since:
- 2.16
-