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

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

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

ObjectNode.retain介绍

[英]Method for removing all field properties out of this ObjectNode except for ones specified in argument.
[中]方法,用于从此ObjectNode中删除除参数中指定的字段属性以外的所有字段属性。

代码示例

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This node (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

代码示例来源:origin: meraki-analytics/orianna

@Override
  public JsonNode apply(final JsonNode tree) {
    if(all) {
      return tree;
    }
    ((ObjectNode)tree).retain(includedData);
    return tree;
  }
}

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This node (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This node (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This node (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This node (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This ObjectNode (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

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

/**
 * Method for removing all field properties out of this ObjectNode
 * <b>except</b> for ones specified in argument.
 * 
 * @param fieldNames Fields to <b>retain</b> in this ObjectNode
 * 
 * @return This node (to allow call chaining)
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

相关文章

微信公众号

最新文章

更多