Tabnine Logo
IndirectMap.initialize
Code IndexAdd Tabnine to your IDE (free)

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

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

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

/**
 * PUBLIC:
 * Construct a new IndirectMap with the same mappings as the given Map.
 * The IndirectMap is created with a capacity of twice the number of entries
 * in the given Map or 11 (whichever is greater), and a default load factor, which is 0.75.
 * @param m a map containing the mappings to use
 */
public IndirectMap(Map m) {
  super(0);
  this.initialize(m);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Construct a new IndirectMap with the same mappings as the given Map.
 * The IndirectMap is created with a capacity of twice the number of entries
 * in the given Map or 11 (whichever is greater), and a default load factor, which is 0.75.
 * @param m a map containing the mappings to use
 */
public IndirectMap(Map<? extends K, ? extends V> m) {
  super(0);
  this.initialize(m);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Construct a new IndirectMap with the same mappings as the given Map.
 * The IndirectMap is created with a capacity of twice the number of entries
 * in the given Map or 11 (whichever is greater), and a default load factor, which is 0.75.
 * @param m a map containing the mappings to use
 */
public IndirectMap(Map<? extends K, ? extends V> m) {
  super(0);
  this.initialize(m);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Construct a new, empty IndirectMap with the specified initial
 * capacity and load factor.
 *
 * @param      initialCapacity   the initial capacity of the hashtable
 * @param      loadFactor        a number between 0.0 and 1.0
 * @exception  IllegalArgumentException  if the initial capacity is less
 *               than or equal to zero, or if the load factor is less than
 *               or equal to zero
 */
public IndirectMap(int initialCapacity, float loadFactor) {
  super(0);
  this.initialize(initialCapacity, loadFactor);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Construct a new, empty IndirectMap with the specified initial
 * capacity and load factor.
 *
 * @param      initialCapacity   the initial capacity of the hashtable
 * @param      loadFactor        a number between 0.0 and 1.0
 * @exception  IllegalArgumentException  if the initial capacity is less
 *               than or equal to zero, or if the load factor is less than
 *               or equal to zero
 */
public IndirectMap(int initialCapacity, float loadFactor) {
  super(0);
  this.initialize(initialCapacity, loadFactor);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Construct a new, empty IndirectMap with the specified initial
 * capacity and load factor.
 *
 * @param      initialCapacity   the initial capacity of the hashtable
 * @param      loadFactor        a number between 0.0 and 1.0
 * @exception  IllegalArgumentException  if the initial capacity is less
 *               than or equal to zero, or if the load factor is less than
 *               or equal to zero
 */
public IndirectMap(int initialCapacity, float loadFactor) {
  super(0);
  this.initialize(initialCapacity, loadFactor);
}
org.eclipse.persistence.indirectionIndirectMapinitialize

Javadoc

Initialize the instance.

Popular methods of IndirectMap

  • _persistence_getPropertyChangeListener
    Return the property change listener for change tracking.
  • buildDelegate
    Return the freshly-built delegate.
  • clear
  • get
  • getDelegate
    INTERNAL: Check whether the contents have been read from the database. If they have not, read them a
  • 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.
  • 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

  • Finding current android device location
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Reference (javax.naming)
  • Top 12 Jupyter Notebook extensions
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