Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
B C D E G H I K L M N P Q R S T V W

B

buckets - Variable in class gnu.java.util.WeakIdentityHashMap
The hash buckets.

C

cleanQueue() - Method in class gnu.java.util.WeakIdentityHashMap
Cleans the reference queue.
clear() - Method in class gnu.java.util.WeakIdentityHashMap
Clears all entries from this map.
containsKey(Object) - Method in class gnu.java.util.WeakIdentityHashMap
Tells if the map contains the given key.
containsValue(Object) - Method in class gnu.java.util.WeakIdentityHashMap
Returns true if the map contains at least one key which points to the specified object as a value.

D

DEFAULT_CAPACITY - Static variable in class gnu.java.util.WeakIdentityHashMap
The default capacity for an instance of HashMap.
DEFAULT_LOAD_FACTOR - Static variable in class gnu.java.util.WeakIdentityHashMap
The default load factor of a HashMap.
DoubleEnumeration - class gnu.java.util.DoubleEnumeration.
This is a helper class that combines two Enumerations.
DoubleEnumeration(Enumeration, Enumeration) - Constructor for class gnu.java.util.DoubleEnumeration
Creates a new Enumeration combining the given two enumerations.

E

EmptyEnumeration - class gnu.java.util.EmptyEnumeration.
This is a helper class that produces an empty Enumerations.
EmptyEnumeration() - Constructor for class gnu.java.util.EmptyEnumeration
Private constructor that creates a new empty Enumeration.
e1 - Variable in class gnu.java.util.DoubleEnumeration
The first enumeration.
e2 - Variable in class gnu.java.util.DoubleEnumeration
The second enumeration.
entrySet() - Method in class gnu.java.util.WeakIdentityHashMap
Returns a set representation of the entries in this map.
equals(Object) - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
The equals method as specified in the Entry interface.

G

get(Object) - Method in class gnu.java.util.WeakIdentityHashMap
Gets the value the key is mapped to.
getBucket() - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
Returns the underlying bucket.
getEntry() - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket
This returns the entry stored in this bucket, or null, if the bucket got cleared in the mean time.
getInstance() - Static method in class gnu.java.util.EmptyEnumeration
Returns the only instance of this class.
getKey() - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
Returns the key.
getValue() - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
Returns the value.
gnu.java.util - package gnu.java.util
 

H

hasChecked - Variable in class gnu.java.util.DoubleEnumeration
This is true, if it is sure that hasMore indicates wether there are more elements.
hasMore - Variable in class gnu.java.util.DoubleEnumeration
This is true as long as one of the enumerations has more elements.
hasMoreElements() - Method in class gnu.java.util.DoubleEnumeration
Returns true, if at least one of the two enumerations has more elements.
hasMoreElements() - Method in class gnu.java.util.EmptyEnumeration
Returns false, since there are no elements.
hash(Object) - Method in class gnu.java.util.WeakIdentityHashMap
Simply hashes a non-null Object to its array index.
hashCode() - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
The hashCode as specified in the Entry interface.

I

instance - Static variable in class gnu.java.util.EmptyEnumeration
The only instance of this class
internalAdd(Object, Object) - Method in class gnu.java.util.WeakIdentityHashMap
Adds a new key/value pair to the hash map.
internalGet(Object) - Method in class gnu.java.util.WeakIdentityHashMap
Finds the entry corresponding to key.
internalRemove(WeakIdentityHashMap.WeakBucket) - Method in class gnu.java.util.WeakIdentityHashMap
Removes a bucket from this hash map, if it wasn't removed before (e.g.
isEmpty() - Method in class gnu.java.util.WeakIdentityHashMap
Tells if the map is empty.
iterator() - Method in class gnu.java.util.WeakIdentityHashMap.WeakEntrySet
Returns an iterator for all entries.

K

key - Variable in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
The strong ref to the key.
keySet() - Method in class gnu.java.util.WeakIdentityHashMap
Returns a set representation of the keys in this map.

L

loadFactor - Variable in class gnu.java.util.WeakIdentityHashMap
The load factor of this WeakIdentityHashMap.

M

modCount - Variable in class gnu.java.util.WeakIdentityHashMap
The number of structural modifications.

N

NULL_KEY - Static variable in class gnu.java.util.WeakIdentityHashMap
This is used instead of the key value null.
next - Variable in class gnu.java.util.WeakIdentityHashMap.WeakBucket
The next bucket describing another entry that uses the same slot.
nextElement() - Method in class gnu.java.util.DoubleEnumeration
Returns the next element.
nextElement() - Method in class gnu.java.util.EmptyEnumeration
Always throws NoSuchElementException, since it is empty.

P

put(Object, Object) - Method in class gnu.java.util.WeakIdentityHashMap
Adds a new key/value mapping to this map.
putAll(Map) - Method in class gnu.java.util.WeakIdentityHashMap
Puts all of the mappings from the given map into this one.

Q

queue - Variable in class gnu.java.util.WeakIdentityHashMap
The reference queue where our buckets (which are WeakReferences) are registered to.

R

rehash() - Method in class gnu.java.util.WeakIdentityHashMap
Rehashes this hashtable.
remove(Object) - Method in class gnu.java.util.WeakIdentityHashMap
Removes the key and the corresponding value from this map.

S

setValue(Object) - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
This changes the value.
size() - Method in class gnu.java.util.WeakIdentityHashMap.WeakEntrySet
Returns the size of this set.
size - Variable in class gnu.java.util.WeakIdentityHashMap
The number of entries in this hash map.
size() - Method in class gnu.java.util.WeakIdentityHashMap
Returns the size of this hash map.
slot - Variable in class gnu.java.util.WeakIdentityHashMap.WeakBucket
The slot of this entry.

T

theEntrySet - Variable in class gnu.java.util.WeakIdentityHashMap
The entry set returned by entrySet().
threshold - Variable in class gnu.java.util.WeakIdentityHashMap
The rounded product of the capacity (i.e.
toString() - Method in class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
 

V

value - Variable in class gnu.java.util.WeakIdentityHashMap.WeakBucket
The value of this entry.
values() - Method in class gnu.java.util.WeakIdentityHashMap
Returns a collection representation of the values in this map.

W

WeakIdentityHashMap - class gnu.java.util.WeakIdentityHashMap.
A weak hash map has only weak references to the key.
WeakIdentityHashMap() - Constructor for class gnu.java.util.WeakIdentityHashMap
Creates a new weak hash map with default load factor and default capacity.
WeakIdentityHashMap(int) - Constructor for class gnu.java.util.WeakIdentityHashMap
Creates a new weak hash map with default load factor and the given capacity.
WeakIdentityHashMap(int, float) - Constructor for class gnu.java.util.WeakIdentityHashMap
Creates a new weak hash map with the given initial capacity and load factor.
WeakIdentityHashMap(Map) - Constructor for class gnu.java.util.WeakIdentityHashMap
Construct a new WeakIdentityHashMap with the same mappings as the given map.
WeakIdentityHashMap.WeakBucket - class gnu.java.util.WeakIdentityHashMap.WeakBucket.
A bucket is a weak reference to the key, that contains a strong reference to the value, a pointer to the next bucket and its slot number.
WeakIdentityHashMap.WeakBucket(Object, ReferenceQueue, Object, int) - Constructor for class gnu.java.util.WeakIdentityHashMap.WeakBucket
Creates a new bucket for the given key/value pair and the specified slot.
WeakIdentityHashMap.WeakBucket.WeakEntry - class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry.
This class gives the Entry representation of the current bucket.
WeakIdentityHashMap.WeakBucket.WeakEntry(Object) - Constructor for class gnu.java.util.WeakIdentityHashMap.WeakBucket.WeakEntry
Creates a new entry for the key.
WeakIdentityHashMap.WeakEntrySet - class gnu.java.util.WeakIdentityHashMap.WeakEntrySet.
The entry set.
WeakIdentityHashMap.WeakEntrySet() - Constructor for class gnu.java.util.WeakIdentityHashMap.WeakEntrySet
Non-private constructor to reduce bytecode emitted.

B C D E G H I K L M N P Q R S T V W