congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IndirectMap.getDelegate
Code IndexAdd Tabnine to your IDE (free)

How to use
getDelegate
method
in
org.eclipse.persistence.indirection.IndirectMap

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

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

/**
 * INTERNAL:
 * Return the real collection object.
 * This will force instantiation.
 */
public Object getDelegateObject() {
  return getDelegate();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Return the real collection object.
 * This will force instantiation.
 */
@Override
public Object getDelegateObject() {
  return getDelegate();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#elements()
 */
@Override
public synchronized Enumeration<V> elements() {
  return this.getDelegate().elements();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#keys()
 */
@Override
public synchronized Enumeration<K> keys() {
  return this.getDelegate().keys();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#get(java.lang.Object)
 */
@Override
public synchronized V get(Object key) {
  return this.getDelegate().get(key);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#keys()
 */
@Override
public synchronized Enumeration<K> keys() {
  return this.getDelegate().keys();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#get(java.lang.Object)
 */
@Override
public synchronized V get(Object key) {
  return this.getDelegate().get(key);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#containsKey(java.lang.Object)
 */
@Override
public synchronized boolean containsKey(Object key) {
  return this.getDelegate().containsKey(key);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#elements()
 */
@Override
public synchronized Enumeration<V> elements() {
  return this.getDelegate().elements();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#size()
 */
@Override
public int size() {
  return this.getDelegate().size();
}
 
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * @see java.util.Hashtable#elements()
 */
public synchronized Enumeration elements() {
  return this.getDelegate().elements();
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * @see java.util.Hashtable#get(java.lang.Object)
 */
public synchronized Object get(Object key) {
  return this.getDelegate().get(key);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * @see java.util.Hashtable#isEmpty()
 */
public boolean isEmpty() {
  return this.getDelegate().isEmpty();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#isEmpty()
 */
@Override
public boolean isEmpty() {
  return this.getDelegate().isEmpty();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#contains(java.lang.Object)
 */
@Override
public synchronized boolean contains(Object value) {
  return this.getDelegate().contains(value);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * @see java.util.Hashtable#remove(java.lang.Object)
 */
@Override
public synchronized V remove(Object key) {
  V value = this.getDelegate().remove(key);
  if (value != null){
    raiseRemoveChangeEvent(key, value);
  }
  return value;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#containsValue(java.lang.Object)
 */
@Override
public boolean containsValue(Object value) {
  return this.getDelegate().containsValue(value);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#equals(java.lang.Object)
 */
@Override
public synchronized boolean equals(Object o) {
  return this.getDelegate().equals(o);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

@Override
public synchronized V replace(K key, V value) {
  // Must trigger add events if tracked or uow.
  if (hasTrackedPropertyChangeListener()) {
    Map<K, V> del = getDelegate();
    if (del.containsKey(key)) {
      return put(key, value);
    }
    return null;
  }
  return getDelegate().replace(key, value);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * @see java.util.Hashtable#put(java.lang.Object, java.lang.Object)
 */
@Override
public synchronized V put(K key, V value) {
  V oldValue = this.getDelegate().put(key, value);
  if (oldValue != null){
    raiseRemoveChangeEvent(key, oldValue);
  }
  raiseAddChangeEvent(key, value);
  return oldValue;
}
org.eclipse.persistence.indirectionIndirectMapgetDelegate

Javadoc

INTERNAL: Check whether the contents have been read from the database. If they have not, read them and set the delegate. This method used to be synchronized, which caused deadlock.

Popular methods of IndirectMap

  • _persistence_getPropertyChangeListener
    Return the property change listener for change tracking.
  • buildDelegate
    Return the freshly-built delegate.
  • clear
  • get
  • getTrackedAttributeName
    INTERNAL: Return the mapping attribute name, used to raise change events.
  • getValueHolder
    PUBLIC: Return the valueHolder. This method used to be synchronized, which caused deadlock.
  • hasTrackedPropertyChangeListener
    INTERNAL: Return if the collection has a property change listener for change tracking.
  • initialize
    Initialize the instance.
  • isInstantiated
    PUBLIC: Return whether the contents have been read from the database.
  • keySet
  • put
  • raiseAddChangeEvent
    Raise the add change event and relationship maintainence.
  • put,
  • raiseAddChangeEvent,
  • raiseRemoveChangeEvent,
  • <init>,
  • remove,
  • entrySet

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • getContentResolver (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Menu (java.awt)
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Join (org.hibernate.mapping)
  • Github Copilot alternatives
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