com.fasterxml.jackson.databind.node.ObjectNode.numberNode()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(110)

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

ObjectNode.numberNode介绍

暂无

代码示例

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * The underlying {@link JsonNode} that will be added is constructed
 * using {@link JsonNodeFactory#numberNode(long)}, and may be
 *  "smaller" (like {@link IntNode}) in cases where value fits within
 *  range of a smaller integral numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, long v) {
  return _put(fieldName, numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, float v) {
  return _put(fieldName, numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, double v) {
  return _put(fieldName, numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * The underlying {@link JsonNode} that will be added is constructed
 * using {@link JsonNodeFactory#numberNode(int)}, and may be
 *  "smaller" (like {@link ShortNode}) in cases where value fits within
 *  range of a smaller integral numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, int v) {
  return _put(fieldName, numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, short v) {
  return _put(fieldName, numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Short v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.shortValue()));
}

代码示例来源:origin: redisson/redisson

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Float v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.floatValue()));
}

代码示例来源:origin: redisson/redisson

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Double v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.doubleValue()));
}

代码示例来源:origin: redisson/redisson

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Integer v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.intValue()));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, BigDecimal v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * 
 * @return This node (to allow chaining)
 *
 * @since 2.9
 */
public ObjectNode put(String fieldName, BigInteger v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v));
}

代码示例来源:origin: redisson/redisson

/**
 * Method for setting value of a field to specified numeric value.
 * The underlying {@link JsonNode} that will be added is constructed
 * using {@link JsonNodeFactory#numberNode(Long)}, and may be
 *  "smaller" (like {@link IntNode}) in cases where value fits within
 *  range of a smaller integral numeric value.
 * <p>
 * Note that this is alternative to {@link #put(String, long)} needed to avoid
 * bumping into NPE issues with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Long v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.longValue()));
}

代码示例来源:origin: com.fasterxml.jackson.core/com.springsource.com.fasterxml.jackson.core.jackson-databind

/**
 * Method for setting value of a field to specified numeric value.
 */
public ObjectNode put(String fieldName, float v) {
  _put(fieldName, numberNode(v));
  return this;
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

/**
 * Method for setting value of a field to specified numeric value.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, double v) {
  _put(fieldName, numberNode(v));
  return this;
}

代码示例来源:origin: com.eclipsesource.jaxrs/jersey-all

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Float v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.floatValue()));
}

代码示例来源:origin: com.eclipsesource.jaxrs/jersey-all

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Double v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.doubleValue()));
}

代码示例来源:origin: hstaudacher/osgi-jax-rs-connector

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Short v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.shortValue()));
}

代码示例来源:origin: hstaudacher/osgi-jax-rs-connector

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Integer v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.intValue()));
}

代码示例来源:origin: Nextdoor/bender

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 * 
 * @return This node (to allow chaining)
 */
public ObjectNode put(String fieldName, Short v) {
  return _put(fieldName, (v == null) ? nullNode()
      : numberNode(v.shortValue()));
}

代码示例来源:origin: com.fasterxml.jackson.core/com.springsource.com.fasterxml.jackson.core.jackson-databind

/**
 * Method for setting value of a field to specified numeric value.
 */
public ObjectNode put(String fieldName, BigDecimal v) {
  if (v == null) {
    putNull(fieldName);
  } else {
    _put(fieldName, numberNode(v));
  }
  return this;
}

相关文章

微信公众号

最新文章

更多