congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
org.eclipse.persistence.indirection
Code IndexAdd Tabnine to your IDE (free)

How to use org.eclipse.persistence.indirection

Best Java code snippets using org.eclipse.persistence.indirection (Showing top 20 results out of 315)

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

  /**
   * INTERNAL:
   * Return if add/remove should trigger instantiation or avoid.
   * Current instantiation is avoided is using change tracking.
   */
  protected boolean shouldAvoidInstantiation() {
    return (!isInstantiated()) && (shouldUseLazyInstantiation()) && (_persistence_getPropertyChangeListener() instanceof AttributeChangeListener) && ((WeavedAttributeValueHolderInterface)getValueHolder()).shouldAllowInstantiationDeferral();
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Return whether the contents have been read from the database.
 */
@Override
public boolean isInstantiated() {
  return this.getValueHolder().isInstantiated();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Return whether the specified object is instantiated.
 */
public boolean objectIsInstantiated(Object object) {
  return ((IndirectContainer)object).getValueHolder().isInstantiated();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Return if add/remove should trigger instantiation or avoid.
 * Current instantiation is avoided is using change tracking.
 */
protected boolean shouldAvoidInstantiation() {
  return (!isInstantiated())  && (shouldUseLazyInstantiation()) && (_persistence_getPropertyChangeListener() instanceof AttributeChangeListener) && !usesListOrderField() && ((WeavedAttributeValueHolderInterface)getValueHolder()).shouldAllowInstantiationDeferral();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Return the "real" attribute value, as opposed to any wrapper.
 * This will trigger the wrapper to instantiate the value.
 */
public Object getRealAttributeValueFromObject(Object object, Object attribute) {
  return ((IndirectContainer)attribute).getValueHolder().getValue();
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Return whether the contents have been read from the database.
 */
public boolean isInstantiated() {
  return getValueHolder().isInstantiated();
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Return whether the contents have been read from the database.
 */
public boolean isInstantiated() {
  return this.getValueHolder().isInstantiated();
}
origin: com.haulmont.thirdparty/eclipselink

  /**
   * INTERNAL:
   * Return if add/remove should trigger instantiation or avoid.
   * Current instantiation is avoided is using change tracking.
   */
  protected boolean shouldAvoidInstantiation() {
    return (!isInstantiated()) && (shouldUseLazyInstantiation()) && (_persistence_getPropertyChangeListener() instanceof AttributeChangeListener) && ((WeavedAttributeValueHolderInterface)getValueHolder()).shouldAllowInstantiationDeferral();
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Return if add/remove should trigger instantiation or avoid.
 * Current instantiation is avoided is using change tracking.
 */
protected boolean shouldAvoidInstantiation() {
  return (!isInstantiated())  && (shouldUseLazyInstantiation()) && (_persistence_getPropertyChangeListener() instanceof AttributeChangeListener) && !usesListOrderField() && ((WeavedAttributeValueHolderInterface)getValueHolder()).shouldAllowInstantiationDeferral();
}

origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Return whether the contents have been read from the database.
 */
public boolean isInstantiated() {
  return this.getValueHolder().isInstantiated();
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Return whether the specified object is instantiated.
 */
public boolean objectIsInstantiated(Object object) {
  return ((IndirectContainer)object).getValueHolder().isInstantiated();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Return the "real" attribute value, as opposed to any wrapper.
 * This will trigger the wrapper to instantiate the value.
 */
public Object getRealAttributeValueFromObject(Object object, Object attribute) {
  return ((IndirectContainer)attribute).getValueHolder().getValue();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Return whether the contents have been read from the database.
 */
@Override
public boolean isInstantiated() {
  return getValueHolder().isInstantiated();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Return whether the contents have been read from the database.
 */
@Override
public boolean isInstantiated() {
  return this.getValueHolder().isInstantiated();
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  /**
   * INTERNAL:
   * Return if add/remove should trigger instantiation or avoid.
   * Current instantiation is avoided is using change tracking.
   */
  protected boolean shouldAvoidInstantiation() {
    return (!isInstantiated()) && (_persistence_getPropertyChangeListener() instanceof AttributeChangeListener) && ((WeavedAttributeValueHolderInterface)getValueHolder()).shouldAllowInstantiationDeferral();
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Return whether the contents have been read from the database.
 */
@Override
public boolean isInstantiated() {
  return this.getValueHolder().isInstantiated();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Return whether the specified object is instantiated.
 */
public boolean objectIsInstantiated(Object object) {
  return ((IndirectContainer)object).getValueHolder().isInstantiated();
}
 
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Return the "real" attribute value, as opposed to any wrapper.
 * This will trigger the wrapper to instantiate the value.
 */
public Object getRealAttributeValueFromObject(Object object, Object attribute) {
  return ((IndirectContainer)attribute).getValueHolder().getValue();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Return whether the contents have been read from the database.
 */
@Override
public boolean isInstantiated() {
  return getValueHolder().isInstantiated();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Return whether the contents have been read from the database.
 */
@Override
public boolean isInstantiated() {
  return this.getValueHolder().isInstantiated();
}
org.eclipse.persistence.indirection

Most used classes

  • ValueHolder
    Purpose: Act as a place holder for a variable that required a value holder interface. This class sho
  • ValueHolderInterface
    Purpose: Interface to allow lazy loading of an object's relationships from the database.
  • IndirectCollection
    Purpose: Common interface to indirect collections.
  • IndirectContainer
    Purpose: Define an interface for a Container that can also act as an EclipseLink "indirection" objec
  • IndirectList
    IndirectList allows a domain class to take advantage of TopLink indirection without having to declar
  • IndirectSet,
  • WeavedAttributeValueHolderInterface,
  • IndirectCollectionsFactory$DefaultProvider,
  • IndirectCollectionsFactory$IndirectCollectionsProvider,
  • IndirectCollectionsFactory,
  • IndirectMap$3
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