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 importantlyJsonFactoryused 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 concreteJsonNodeimplementations Jackson uses for the Tree model.org.codehaus.jackson.smile Package that contains experimental implementation of "Binary-Encoded JSON-Like" data format handlers (parser, generator, factory produce both, supporting constants).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.NumberTypeJsonNode. getNumberType()If this node is a numeric type (as perJsonNode.isNumber()), returns native type that node uses to store the numeric value.abstract JsonParser.NumberTypeJsonParser. getNumberType()If current token is of typeJsonToken.VALUE_NUMBER_INTorJsonToken.VALUE_NUMBER_FLOAT, returns one ofJsonParser.NumberTypeconstants; otherwise returns null.static JsonParser.NumberTypeJsonParser.NumberType. valueOf(java.lang.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.NumberTypeJsonParserBase. 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.NumberTypeBaseJsonNode. getNumberType()JsonParser.NumberTypeBigIntegerNode. getNumberType()JsonParser.NumberTypeDecimalNode. getNumberType()JsonParser.NumberTypeDoubleNode. getNumberType()JsonParser.NumberTypeIntNode. getNumberType()JsonParser.NumberTypeLongNode. getNumberType()abstract JsonParser.NumberTypeNumericNode. getNumberType()JsonParser.NumberTypeTreeTraversingParser. getNumberType() -
Uses of JsonParser.NumberType in org.codehaus.jackson.smile
Methods in org.codehaus.jackson.smile that return JsonParser.NumberType Modifier and Type Method Description JsonParser.NumberTypeSmileParser. 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.NumberTypeJsonParserDelegate. getNumberType()JsonParser.NumberTypeTokenBuffer.Parser. getNumberType()
-