Tabnine Logo
DescriptorIterator.iterateValueHolderForMapping
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 *    Iterate over the specified attribute value,
 */
public void iterateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) {
  iterator.iterateValueHolderForMapping((ValueHolderInterface)attributeValue, this.mapping);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 *    Iterate over the specified attribute value,
 */
public void iterateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) {
  iterator.iterateValueHolderForMapping((ValueHolderInterface)attributeValue, this.mapping);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 *    Iterate over the specified attribute value,
 */
public void iterateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) {
  iterator.iterateValueHolderForMapping((ValueHolderInterface)attributeValue, this.getMapping());
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Iterate over the specified attribute value.
 */
public void iterateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) {
  if (attributeValue instanceof Proxy) {
    ProxyIndirectionHandler handler = (ProxyIndirectionHandler)Proxy.getInvocationHandler(attributeValue);
    ValueHolderInterface valueHolder = handler.getValueHolder();
    iterator.iterateValueHolderForMapping(valueHolder, this.getMapping());
  } else {
    if (attributeValue != null) {
      this.getMapping().iterateOnRealAttributeValue(iterator, attributeValue);
    }
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Iterate over the specified attribute value.
 */
public void iterateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) {
  if (attributeValue instanceof Proxy) {
    ProxyIndirectionHandler handler = (ProxyIndirectionHandler)Proxy.getInvocationHandler(attributeValue);
    ValueHolderInterface valueHolder = handler.getValueHolder();
    iterator.iterateValueHolderForMapping(valueHolder, this.getMapping());
  } else {
    if (attributeValue != null) {
      this.getMapping().iterateOnRealAttributeValue(iterator, attributeValue);
    }
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Iterate over the specified attribute value.
 */
public void iterateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) {
  if (attributeValue instanceof Proxy) {
    ProxyIndirectionHandler handler = (ProxyIndirectionHandler)Proxy.getInvocationHandler(attributeValue);
    ValueHolderInterface valueHolder = handler.getValueHolder();
    iterator.iterateValueHolderForMapping(valueHolder, this.getMapping());
  } else {
    if (attributeValue != null) {
      this.getMapping().iterateOnRealAttributeValue(iterator, attributeValue);
    }
  }
}
org.eclipse.persistence.internal.descriptorsDescriptorIteratoriterateValueHolderForMapping

Javadoc

Iterate on the value holder for its mapping.

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,
  • setCascadeCondition

Popular in Java

  • Making http post requests using okhttp
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Best IntelliJ 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