本文整理了Java中org.codehaus.jackson.JsonNode.isBigInteger()
方法的一些代码示例,展示了JsonNode.isBigInteger()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JsonNode.isBigInteger()
方法的具体详情如下:
包路径:org.codehaus.jackson.JsonNode
类名称:JsonNode
方法名:isBigInteger
暂无
代码示例来源:origin: com.atlassian.jira/jira-core
public boolean isBigInteger()
{
return delegate.isBigInteger();
}
代码示例来源:origin: org.apache.isis.viewer/json-applib
private boolean isBigInteger(final JsonNode node) {
return !representsNull(node) && node.isValueNode() && node.isBigInteger();
}
代码示例来源:origin: org.apache.isis.viewer/json-applib
private BigInteger getBigInteger(final String path, final JsonNode node) {
if (representsNull(node)) {
return null;
}
checkValue(path, node, "a biginteger");
if (!node.isBigInteger()) {
throw new IllegalArgumentException(formatExMsg(path, "is not a biginteger"));
}
return node.getBigIntegerValue();
}
代码示例来源:origin: org.apache.isis.viewer/isis-viewer-restfulobjects-applib
private BigInteger getBigInteger(String path, JsonNode node) {
if (node.isBigInteger()) {
return node.getBigIntegerValue();
}
if (node.isTextual()) {
return new BigInteger(node.getTextValue());
}
if (node.isLong()) {
return BigInteger.valueOf(node.getLongValue());
}
if (node.isInt()) {
return BigInteger.valueOf(node.getIntValue());
}
throw new IllegalArgumentException(formatExMsg(path, "is not a biginteger, is not any other integral number, is not text parseable as a biginteger"));
}
代码示例来源:origin: org.apache.isis.viewer/isis-viewer-restfulobjects-applib
private BigDecimal getBigDecimal(String path, JsonNode node) {
if (node.isBigDecimal()) {
return node.getDecimalValue();
}
if (node.isTextual()) {
return new BigDecimal(node.getTextValue());
}
if (node.isLong()) {
return new BigDecimal(node.getLongValue());
}
if (node.isDouble()) {
// there will be rounding errors, most likely
return new BigDecimal(node.getDoubleValue());
}
if (node.isBigInteger()) {
return new BigDecimal(node.getBigIntegerValue());
}
if (node.isInt()) {
return new BigDecimal(node.getIntValue());
}
throw new IllegalArgumentException(formatExMsg(path, "is not a bigdecimal, is not any other numeric, is not text parseable as a bigdecimal"));
}
代码示例来源:origin: org.apache.isis.viewer/isis-viewer-restfulobjects-applib
private boolean isBigInteger(final JsonNode node) {
return !representsNull(node) && node.isValueNode() && (node.isBigInteger() || node.isLong() || node.isInt() || node.isTextual() && parseableAsBigInteger(node.getTextValue()));
}
代码示例来源:origin: org.apache.isis.viewer/isis-viewer-restfulobjects-applib
private boolean isBigDecimal(final JsonNode node) {
return !representsNull(node) && node.isValueNode() && (node.isBigDecimal() || node.isDouble() || node.isLong() || node.isInt() || node.isBigInteger() || node.isTextual() && parseableAsBigDecimal(node.getTextValue()));
}
代码示例来源:origin: net.sf.jsog/jsog
} else if (jsonNode.isBigDecimal()) {
set(jsonNode.getDecimalValue());
} else if (jsonNode.isBigInteger()) {
set(jsonNode.getBigIntegerValue());
} else if (jsonNode.isDouble()) {
代码示例来源:origin: de.mhus.lib/mhu-lib-core
else if (node.isBigDecimal())
out = node.getDecimalValue();
else if (node.isBigInteger())
out = node.getBigIntegerValue();
else if (node.isBinary())
代码示例来源:origin: com.googlecode.etl-unit/json-validator
if (node.isInt() || node.isIntegralNumber() || node.isLong() || node.isBigInteger())
代码示例来源:origin: de.mhus.lib/mhu-lib-core
public static Object getValue(JsonNode node, TransformHelper helper) {
Object out = null;
if (node == null) return null;
try {
if (node.isTextual())
out = node.asText();
else if (node.isNull())
out = null;
else if (node.isBigDecimal())
out = node.getDecimalValue();
else if (node.isBigInteger())
out = node.getBigIntegerValue();
else if (node.isBinary())
out = node.getBinaryValue();
else if (node.isBoolean())
out = node.getBooleanValue();
else if (node.isDouble())
out = node.getDoubleValue();
else if (node.isInt())
out = node.getIntValue();
else if (node.isLong())
out = node.getLongValue();
else if (node.isNumber())
out = node.getNumberValue();
} catch (IOException e) {}
return out;
}
代码示例来源:origin: de.mhus.lib/mhu-lib-core
public static Object getValue(JsonNode node, TransformHelper helper) {
Object out = null;
if (node == null) return null;
try {
if (node.isTextual())
out = node.asText();
else if (node.isNull())
out = null;
else if (node.isBigDecimal())
out = node.getDecimalValue();
else if (node.isBigInteger())
out = node.getBigIntegerValue();
else if (node.isBinary())
out = node.getBinaryValue();
else if (node.isBoolean())
out = node.getBooleanValue();
else if (node.isDouble())
out = node.getDoubleValue();
else if (node.isInt())
out = node.getIntValue();
else if (node.isLong())
out = node.getLongValue();
else if (node.isNumber())
out = node.getNumberValue();
} catch (IOException e) {}
return out;
}
}
内容来源于网络,如有侵权,请联系作者删除!