| java.lang.Object com.versant.core.common.EntrySet
EntrySet | final public class EntrySet (Code) | | This is a Hashed based collection that contain Entry elements.
|
Inner Class :public static class Entry | |
Inner Class :class Iter implements Iterator | |
Field Summary | |
final static int | DEFAULT_INITIAL_CAPACITY The default initial capacity - MUST be a power of two. | final static float | DEFAULT_LOAD_FACTOR The load factor used when none specified in constructor. | final static int | MAXIMUM_CAPACITY The maximum capacity, used if a higher value is implicitly specified
by either of the constructors with arguments. | final float | loadFactor The load factor for the hash table. | transient int | size The number of key-value mappings contained in this identity hash map. | int | threshold The next size value at which to resize (capacity * load factor). |
Constructor Summary | |
public | EntrySet() | public | EntrySet(int initialCapacity) | public | EntrySet(int initialCapacity, float loadFactor) |
DEFAULT_INITIAL_CAPACITY | final static int DEFAULT_INITIAL_CAPACITY(Code) | | The default initial capacity - MUST be a power of two.
|
DEFAULT_LOAD_FACTOR | final static float DEFAULT_LOAD_FACTOR(Code) | | The load factor used when none specified in constructor.
|
MAXIMUM_CAPACITY | final static int MAXIMUM_CAPACITY(Code) | | The maximum capacity, used if a higher value is implicitly specified
by either of the constructors with arguments.
MUST be a power of two <= 1<<30.
|
loadFactor | final float loadFactor(Code) | | The load factor for the hash table.
|
size | transient int size(Code) | | The number of key-value mappings contained in this identity hash map.
|
threshold | int threshold(Code) | | The next size value at which to resize (capacity * load factor).
|
EntrySet | public EntrySet()(Code) | | |
EntrySet | public EntrySet(int initialCapacity)(Code) | | |
EntrySet | public EntrySet(int initialCapacity, float loadFactor)(Code) | | |
clear | public void clear()(Code) | | Removes all mappings from this map.
|
contains | public boolean contains(OID oid)(Code) | | |
eq | static boolean eq(OID x, OID y)(Code) | | Check for equality of non-null reference x and possibly-null y.
|
indexFor | static int indexFor(int h, int length)(Code) | | Returns index for hash code h.
|
resize | void resize(int newCapacity)(Code) | | |
size | public int size()(Code) | | How many keys are in the cache?
|
transfer | void transfer(Entry[] newTable)(Code) | | Transfer all entries from current table to newTable.
|
|
|