Tabnine Logo
ObjectNode.retain
Code IndexAdd Tabnine to your IDE (free)

How to use
retain
method
in
org.codehaus.jackson.node.ObjectNode

Best Java code snippets using org.codehaus.jackson.node.ObjectNode.retain (Showing top 5 results out of 315)

origin: org.codehaus.jackson/jackson-mapper-asl

/**
 * 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)
 * 
 * @since 1.6
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

origin: camunda/camunda-bpm-platform

/**
 * 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)
 * 
 * @since 1.6
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

origin: org.codehaus.jackson/jackson-mapper-lgpl

/**
 * 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)
 * 
 * @since 1.6
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

origin: com.barchart.wrap/barchart-wrap-jackson

/**
 * 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)
 * 
 * @since 1.6
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

origin: ovea-deprecated/jetty-session-redis

/**
 * 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)
 * 
 * @since 1.6
 */
public ObjectNode retain(String... fieldNames) {
  return retain(Arrays.asList(fieldNames));
}

org.codehaus.jackson.nodeObjectNoderetain

Javadoc

Method for removing all field properties out of this ObjectNode except for ones specified in argument.

Popular methods of ObjectNode

  • put
    Method for setting value of a field to specified binary value
  • get
  • getFields
    Method to use for accessing all fields (with both names and values) of this JSON Object.
  • toString
  • putArray
    Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old valu
  • has
  • remove
    Method for removing specified field properties out of this ObjectNode.
  • objectNode
  • size
  • <init>
  • arrayNode
  • putObject
    Method that will construct an ObjectNode and add it as a field of this ObjectNode, replacing old val
  • arrayNode,
  • putObject,
  • nullNode,
  • path,
  • putNull,
  • POJONode,
  • _put,
  • binaryNode,
  • booleanNode,
  • equals

Popular in Java

  • Making http post requests using okhttp
  • getContentResolver (Context)
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now