Uses of Class
org.codehaus.jackson.JsonParser.NumberType
-
Packages that use JsonParser.NumberType Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonParser
) instances.org.codehaus.jackson.impl Parser and generator implementation classes that Jackson defines and uses.org.codehaus.jackson.node Contains concreteJsonNode
implementations Jackson uses for the Tree model.org.codehaus.jackson.util Utility classes used by Jackson Core functionality. -
-
Uses of JsonParser.NumberType in org.codehaus.jackson
Methods in org.codehaus.jackson that return JsonParser.NumberType Modifier and Type Method Description abstract JsonParser.NumberType
JsonNode. getNumberType()
If this node is a numeric type (as perJsonNode.isNumber()
), returns native type that node uses to store the numeric value.abstract JsonParser.NumberType
JsonParser. getNumberType()
If current token is of typeJsonToken.VALUE_NUMBER_INT
orJsonToken.VALUE_NUMBER_FLOAT
, returns one ofJsonParser.NumberType
constants; otherwise returns null.static JsonParser.NumberType
JsonParser.NumberType. valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonParser.NumberType[]
JsonParser.NumberType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of JsonParser.NumberType in org.codehaus.jackson.impl
Methods in org.codehaus.jackson.impl that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberType
JsonParserBase. getNumberType()
-
Uses of JsonParser.NumberType in org.codehaus.jackson.node
Methods in org.codehaus.jackson.node that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberType
BaseJsonNode. getNumberType()
JsonParser.NumberType
BigIntegerNode. getNumberType()
JsonParser.NumberType
DecimalNode. getNumberType()
JsonParser.NumberType
DoubleNode. getNumberType()
JsonParser.NumberType
IntNode. getNumberType()
JsonParser.NumberType
LongNode. getNumberType()
abstract JsonParser.NumberType
NumericNode. getNumberType()
JsonParser.NumberType
TreeTraversingParser. getNumberType()
-
Uses of JsonParser.NumberType in org.codehaus.jackson.util
Methods in org.codehaus.jackson.util that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberType
JsonParserDelegate. getNumberType()
JsonParser.NumberType
TokenBuffer.Parser. getNumberType()
-