congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DescriptorIterator.setResult
Code IndexAdd Tabnine to your IDE (free)

How to use
setResult
method
in
org.eclipse.persistence.internal.descriptors.DescriptorIterator

Best Java code snippets using org.eclipse.persistence.internal.descriptors.DescriptorIterator.setResult (Showing top 6 results out of 315)

origin: com.haulmont.thirdparty/eclipselink

iterator.setResult(knownNewObjects);
iterator.setSession(this);
origin: org.eclipse.persistence/org.eclipse.persistence.core

iterator.setResult(knownNewObjects);
iterator.setSession(this);
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

iterator.setResult(knownNewObjects);
iterator.setSession(this);
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Traverse the specified object, replacing the standard
 * value holders with remote value holders.
 * Add the resulting object descriptors to the
 * "collecting parm".
 */
public void replaceValueHoldersIn(Object object, Map objectDescriptors) {
  if (object == null) {
    return;
  }
  DescriptorIterator iterator = new ReplaceValueHoldersIterator(this);
  iterator.setResult(objectDescriptors);
  iterator.setSession(getExecutionSession());
  iterator.setShouldIterateOnIndirectionObjects(true);// process the value holders themselves
  iterator.setShouldIterateOverIndirectionObjects(false);// but don't go beyond them
  iterator.startIterationOn(object);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Traverse the specified object, replacing the standard
 * value holders with remote value holders.
 * Add the resulting object descriptors to the
 * "collecting parm".
 */
public void replaceValueHoldersIn(Object object, Map objectDescriptors) {
  if (object == null) {
    return;
  }
  DescriptorIterator iterator = new ReplaceValueHoldersIterator(this);
  iterator.setResult(objectDescriptors);
  iterator.setSession(getExecutionSession());
  iterator.setShouldIterateOnIndirectionObjects(true);// process the value holders themselves
  iterator.setShouldIterateOverIndirectionObjects(false);// but don't go beyond them
  iterator.startIterationOn(object);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Traverse the specified object, replacing the standard
 * value holders with remote value holders.
 * Add the resulting object descriptors to the
 * "collecting parm".
 */
public void replaceValueHoldersIn(Object object, Map objectDescriptors) {
  if (object == null) {
    return;
  }
  DescriptorIterator iterator = new ReplaceValueHoldersIterator(this);
  iterator.setResult(objectDescriptors);
  iterator.setSession(getSession());
  iterator.setShouldIterateOnIndirectionObjects(true);// process the value holders themselves
  iterator.setShouldIterateOverIndirectionObjects(false);// but don't go beyond them
  iterator.startIterationOn(object);
}
org.eclipse.persistence.internal.descriptorsDescriptorIteratorsetResult

Popular methods of DescriptorIterator

  • getCascadeDepth
  • getCurrentDescriptor
  • getDescriptorFor
    Fetch and return the descriptor for the specified object.
  • getSession
  • getVisitedObjects
  • getVisitedParent
    Return the last object visited.
  • getVisitedStack
  • internalIterateAggregateObject
    Iterate an aggregate object (i.e. an object that is the target of an AggregateMapping). Override thi
  • internalIterateIndirectContainer
    Iterate an indirect container (IndirectList or IndirectMap). Override this method if appropriate.
  • internalIteratePrimitive
    Iterate a primitive object (String, Date, Integer, etc.). Override this method if appropriate.
  • internalIterateReferenceObject
    Iterate a (a non-Aggregate) reference object. Override this method if appropriate.
  • internalIterateValueHolder
    Iterate a value holder. Override this method if appropriate.
  • internalIterateReferenceObject,
  • internalIterateValueHolder,
  • iterate,
  • iterateForAggregateMapping,
  • iterateIndirectContainerForMapping,
  • iteratePrimitiveForMapping,
  • iterateReferenceObjectForMapping,
  • iterateReferenceObjects,
  • iterateValueHolderForMapping,
  • setCascadeCondition

Popular in Java

  • Updating database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • findViewById (Activity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • ImageIO (javax.imageio)
  • JOptionPane (javax.swing)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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