org.codehaus.jackson.JsonNode.isBigDecimal()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(120)

本文整理了Java中org.codehaus.jackson.JsonNode.isBigDecimal()方法的一些代码示例,展示了JsonNode.isBigDecimal()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JsonNode.isBigDecimal()方法的具体详情如下:
包路径:org.codehaus.jackson.JsonNode
类名称:JsonNode
方法名:isBigDecimal

JsonNode.isBigDecimal介绍

暂无

代码示例

代码示例来源:origin: com.atlassian.jira/jira-core

public boolean isBigDecimal()
{
  return delegate.isBigDecimal();
}

代码示例来源:origin: org.apache.isis.viewer/json-applib

private boolean isBigDecimal(final JsonNode node) {
  return !representsNull(node) && node.isValueNode() && node.isBigDecimal();
}

代码示例来源:origin: org.apache.isis.viewer/json-applib

private BigDecimal getBigDecimal(final String path, final JsonNode node) {
  if (representsNull(node)) {
    return null;
  }
  checkValue(path, node, "a biginteger");
  if (!node.isBigDecimal()) {
    throw new IllegalArgumentException(formatExMsg(path, "is not a biginteger"));
  }
  return node.getDecimalValue();
}

代码示例来源: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 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: de.mhus.lib/mhu-lib-core

else if (node.isTextual())
  out = node.getValueAsText();
else if (node.isBigDecimal())
  out = node.getDecimalValue();
else if (node.isBigInteger())

代码示例来源:origin: net.sf.jsog/jsog

} else if (jsonNode.isBoolean()) {
  set(jsonNode.getBooleanValue());
} else if (jsonNode.isBigDecimal()) {
  set(jsonNode.getDecimalValue());
} else if (jsonNode.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;
  }
}

相关文章