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

x33g5p2x  于2022-01-15 转载在 其他  
字(5.7k)|赞(0)|评价(0)|浏览(79)

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

ArrayNode._insert介绍

暂无

代码示例

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

/**
 * Method that will insert a null value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insertNull(int index)
{
  _insert(index, nullNode());
  return this;
}

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

/**
 * Method that will insert specified numeric value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, long v) {
  return _insert(index, numberNode(v));
}

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

/**
 * Method that will insert specified numeric value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, double v) {
  return _insert(index, numberNode(v));
}

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

/**
 * Method that will insert specified String
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, boolean v) {
  return _insert(index, booleanNode(v));
}

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

/**
 * Method that will insert specified numeric value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, int v) {
  _insert(index, numberNode(v));
  return this;
}

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

/**
 * Method for creating an array node, inserting it at the
 * specified point in the array,
 * and returning the <b>newly created array</b>
 * (note: NOT 'this' array)
 */
public ArrayNode insertArray(int index)
{
  ArrayNode n  = arrayNode();
  _insert(index, n);
  return n;
}

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

/**
 * Method that will insert specified numeric value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, float v) {
  return _insert(index, numberNode(v));
}

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

/**
 * Method for creating an {@link ObjectNode}, appending it at the end
 * of this array, and returning the <b>newly created node</b>
 * (note: NOT 'this' array)
 *
 * @return Newly constructed ObjectNode
 */
public ObjectNode insertObject(int index)
{
  ObjectNode n  = objectNode();
  _insert(index, n);
  return n;
}

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

/**
 * Method for inserting specified child node as an element
 * of this Array. If index is 0 or less, it will be inserted as
 * the first element; if >= size(), appended at the end, and otherwise
 * inserted before existing element in specified index.
 * No exceptions are thrown for any index.
 *
 * @return This node (to allow chaining)
 */
public ArrayNode insert(int index, JsonNode value)
{
  if (value == null) {
    value = nullNode();
  }
  _insert(index, value);
  return this;
}

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

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, Long value) {
  if (value == null) {
    return insertNull(index);
  }
  return _insert(index, numberNode(value.longValue()));
}

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

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, Double value) {
  if (value == null) {
    return insertNull(index);
  }
  return _insert(index, numberNode(value.doubleValue()));
}

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

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, Boolean value) {
  if (value == null) {
    return insertNull(index);
  }
  return _insert(index, booleanNode(value.booleanValue()));
}

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

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, Float value) {
  if (value == null) {
    return insertNull(index);
  }
  return _insert(index, numberNode(value.floatValue()));
}

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

/**
 * Alternative method that we need to avoid bumping into NPE issues
 * with auto-unboxing.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, Integer value) {
  if (value == null) {
    insertNull(index);
  } else {
    _insert(index, numberNode(value.intValue()));
  }
  return this;
}

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

/**
 * Method that will insert specified numeric value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, BigDecimal v) {
  if (v == null) {
    return insertNull(index);
  }
  return _insert(index, numberNode(v));
}

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

/**
 * Method that will insert specified String
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, String v) {
  if (v == null) {
    return insertNull(index);
  }
  return _insert(index, textNode(v));
}

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

/**
 * Method that will insert specified binary value
 * at specified position in this array
 * (note: when written as JSON, will be Base64 encoded)
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insert(int index, byte[] v) {
  if (v == null) {
    return insertNull(index);
  }
  return _insert(index, binaryNode(v));
}

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

/**
 * Method that will construct a POJONode and
 * insert it at specified position in this array.
 *
 * @return This array node, to allow chaining
 */
public ArrayNode insertPOJO(int index, Object value)
{
  if (value == null) {
    return insertNull(index);
  }
  return _insert(index, pojoNode(value));
}

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

/**
 * Method that will insert specified numeric value
 * at specified position in this array.
 *
 * @return This array node, to allow chaining
 *
 * @since 2.9
 */
public ArrayNode insert(int index, BigInteger v) {
  if (v == null) {
    return insertNull(index);
  }
  return _insert(index, numberNode(v));
}

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

/**
 * Method for creating an array node, inserting it at the
 * specified point in the array,
 * and returning the <b>newly created array</b>
 * (note: NOT 'this' array)
 */
public ArrayNode insertArray(int index)
{
  ArrayNode n  = arrayNode();
  _insert(index, n);
  return n;
}

相关文章