|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.fasterxml.jackson.databind.JsonNode com.fasterxml.jackson.databind.node.BaseJsonNode com.fasterxml.jackson.databind.node.ValueNode com.fasterxml.jackson.databind.node.NumericNode
public abstract class NumericNode
Intermediate value node used for numeric nodes.
Field Summary |
---|
Fields inherited from class com.fasterxml.jackson.databind.JsonNode |
---|
NO_NODES, NO_STRINGS |
Constructor Summary | |
---|---|
protected |
NumericNode()
|
Method Summary | |
---|---|
double |
asDouble()
Method that will try to convert value of this node to a Java double. |
double |
asDouble(double defaultValue)
Method that will try to convert value of this node to a Java double. |
int |
asInt()
Method that will try to convert value of this node to a Java int. |
int |
asInt(int defaultValue)
Method that will try to convert value of this node to a Java int. |
long |
asLong()
Method that will try to convert value of this node to a Java long. |
long |
asLong(long defaultValue)
Method that will try to convert value of this node to a Java long. |
abstract String |
asText()
Method that will return a valid String representation of the container value, if the node is a value node (method JsonNode.isValueNode() returns true),
otherwise empty String. |
abstract BigInteger |
bigIntegerValue()
|
abstract boolean |
canConvertToInt()
Method that can be used to check whether this node is a numeric node ( JsonNode.isNumber() would return true) AND its value fits
within Java's 32-bit signed integer type, int . |
abstract boolean |
canConvertToLong()
Method that can be used to check whether this node is a numeric node ( JsonNode.isNumber() would return true) AND its value fits
within Java's 64-bit signed integer type, long . |
abstract BigDecimal |
decimalValue()
|
abstract double |
doubleValue()
|
abstract int |
intValue()
Returns integer value for this node, if and only if this node is numeric ( JsonNode.isNumber() returns true). |
boolean |
isNumber()
|
abstract long |
longValue()
|
abstract JsonParser.NumberType |
numberType()
Returns code that identifies type of underlying numeric value, if (and only if) node is a number node. |
abstract Number |
numberValue()
Returns numeric value for this node, if and only if this node is numeric ( JsonNode.isNumber() returns true); otherwise
returns null |
Methods inherited from class com.fasterxml.jackson.databind.node.ValueNode |
---|
asToken, deepCopy, isValueNode, path, path, serializeWithType, toString |
Methods inherited from class com.fasterxml.jackson.databind.node.BaseJsonNode |
---|
findParent, findParents, findPath, findValue, findValues, findValuesAsText, serialize, traverse |
Methods inherited from class com.fasterxml.jackson.databind.JsonNode |
---|
asBoolean, asBoolean, binaryValue, booleanValue, elements, equals, fieldNames, fields, findParents, findValues, findValuesAsText, get, get, has, has, hasNonNull, hasNonNull, isArray, isBigDecimal, isBigInteger, isBinary, isBoolean, isContainerNode, isDouble, isFloatingPointNumber, isInt, isIntegralNumber, isLong, isMissingNode, isNull, isObject, isPojo, isTextual, iterator, size, textValue, with, withArray |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected NumericNode()
Method Detail |
---|
public final boolean isNumber()
isNumber
in class JsonNode
public abstract JsonParser.NumberType numberType()
BaseJsonNode
numberType
in interface TreeNode
numberType
in class BaseJsonNode
public abstract Number numberValue()
JsonNode
JsonNode.isNumber()
returns true); otherwise
returns null
numberValue
in class JsonNode
public abstract int intValue()
JsonNode
JsonNode.isNumber()
returns true). For other
types returns 0.
For floating-point numbers, value is truncated using default
Java coercion, similar to how cast from double to int operates.
intValue
in class JsonNode
public abstract long longValue()
longValue
in class JsonNode
public abstract double doubleValue()
doubleValue
in class JsonNode
public abstract BigDecimal decimalValue()
decimalValue
in class JsonNode
public abstract BigInteger bigIntegerValue()
bigIntegerValue
in class JsonNode
public abstract boolean canConvertToInt()
JsonNode
JsonNode.isNumber()
would return true) AND its value fits
within Java's 32-bit signed integer type, int
.
Note that floating-point numbers are convertible if the integral
part fits without overflow (as per standard Java coercion rules)
canConvertToInt
in class JsonNode
public abstract boolean canConvertToLong()
JsonNode
JsonNode.isNumber()
would return true) AND its value fits
within Java's 64-bit signed integer type, long
.
Note that floating-point numbers are convertible if the integral
part fits without overflow (as per standard Java coercion rules)
canConvertToLong
in class JsonNode
public abstract String asText()
JsonNode
JsonNode.isValueNode()
returns true),
otherwise empty String.
asText
in class JsonNode
public final int asInt()
JsonNode
If representation can not be converted to an int (including structured types like Objects and Arrays), default value of 0 will be returned; no exceptions are thrown.
asInt
in class JsonNode
public final int asInt(int defaultValue)
JsonNode
If representation can not be converted to an int (including structured types like Objects and Arrays), specified defaultValue will be returned; no exceptions are thrown.
asInt
in class JsonNode
public final long asLong()
JsonNode
If representation can not be converted to an long (including structured types like Objects and Arrays), default value of 0 will be returned; no exceptions are thrown.
asLong
in class JsonNode
public final long asLong(long defaultValue)
JsonNode
If representation can not be converted to an long (including structured types like Objects and Arrays), specified defaultValue will be returned; no exceptions are thrown.
asLong
in class JsonNode
public final double asDouble()
JsonNode
If representation can not be converted to an int (including structured types like Objects and Arrays), default value of 0.0 will be returned; no exceptions are thrown.
asDouble
in class JsonNode
public final double asDouble(double defaultValue)
JsonNode
If representation can not be converted to an int (including structured types like Objects and Arrays), specified defaultValue will be returned; no exceptions are thrown.
asDouble
in class JsonNode
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |