|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JsonParser.NumberType | |
---|---|
org.codehaus.jackson | Main public API classes of the core streaming JSON
processor: most importantly JsonFactory
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 concrete JsonNode 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 | |
---|---|
abstract JsonParser.NumberType |
JsonParser.getNumberType()
If current token is of type JsonToken.VALUE_NUMBER_INT or
JsonToken.VALUE_NUMBER_FLOAT , returns
one of JsonParser.NumberType constants; otherwise returns null. |
abstract JsonParser.NumberType |
JsonNode.getNumberType()
If this node is a numeric type (as per JsonNode.isNumber() ),
returns native type that node uses to store the numeric
value. |
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 | |
---|---|
JsonParser.NumberType |
JsonNumericParserBase.getNumberType()
|
Uses of JsonParser.NumberType in org.codehaus.jackson.node |
---|
Methods in org.codehaus.jackson.node that return JsonParser.NumberType | |
---|---|
JsonParser.NumberType |
TreeTraversingParser.getNumberType()
|
abstract JsonParser.NumberType |
NumericNode.getNumberType()
|
JsonParser.NumberType |
LongNode.getNumberType()
|
JsonParser.NumberType |
IntNode.getNumberType()
|
JsonParser.NumberType |
DoubleNode.getNumberType()
|
JsonParser.NumberType |
DecimalNode.getNumberType()
|
JsonParser.NumberType |
BigIntegerNode.getNumberType()
|
JsonParser.NumberType |
BaseJsonNode.getNumberType()
|
Uses of JsonParser.NumberType in org.codehaus.jackson.util |
---|
Methods in org.codehaus.jackson.util that return JsonParser.NumberType | |
---|---|
JsonParser.NumberType |
TokenBuffer.Parser.getNumberType()
|
JsonParser.NumberType |
JsonParserDelegate.getNumberType()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |