|
|||||||||
| Home >> All >> aaron >> [ util overview ] | PREV NEXT | ||||||||
A
- AbstractMap - class aaron.util.AbstractMap.
- This class provides a skeletal implementation of the Map interface, to minimize the effort required to implement this interface.
- AbstractMap() - Constructor for class aaron.util.AbstractMap
- Sole constructor.
- AbstractMap.SimpleEntry - class aaron.util.AbstractMap.SimpleEntry.
- This should be made public as soon as possible.
- AbstractMap.SimpleEntry(Object, Object) - Constructor for class aaron.util.AbstractMap.SimpleEntry
- AbstractMap.SimpleEntry(Map.Entry) - Constructor for class aaron.util.AbstractMap.SimpleEntry
- aaron.util - package aaron.util
- accessOrder - Variable in class aaron.util.LinkedHashMap
- The iteration ordering method for this linked hash map: true for access-order, false for insertion-order.
- addBefore(LinkedHashMap.Entry) - Method in class aaron.util.LinkedHashMap.Entry
- Insert this entry before the specified existing entry in the list.
- addEntry(int, Object, Object, int) - Method in class aaron.util.HashMap
- Add a new entry with the specified key, value and hash code to the specified bucket.
- addEntry(int, Object, Object, int) - Method in class aaron.util.LinkedHashMap
- This override alters behavior of superclass put method.
- after - Variable in class aaron.util.LinkedHashMap.Entry
B
- before - Variable in class aaron.util.LinkedHashMap.Entry
C
- capacity() - Method in class aaron.util.HashMap
- clear() - Method in class aaron.util.AbstractMap
- Removes all mappings from this map (optional operation).
- clear() - Method in class aaron.util.HashMap.EntrySet
- clear() - Method in class aaron.util.HashMap.KeySet
- clear() - Method in class aaron.util.HashMap.Values
- clear() - Method in class aaron.util.HashMap
- Removes all mappings from this map.
- clear() - Method in class aaron.util.LinkedHashMap
- Removes all mappings from this map.
- clone() - Method in class aaron.util.AbstractMap
- Returns a shallow copy of this AbstractMap instance: the keys and values themselves are not cloned.
- clone() - Method in class aaron.util.HashMap
- Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned.
- contains(Object) - Method in class aaron.util.HashMap.EntrySet
- contains(Object) - Method in class aaron.util.HashMap.KeySet
- contains(Object) - Method in class aaron.util.HashMap.Values
- containsKey(Object) - Method in class aaron.util.AbstractMap
- Returns true if this map contains a mapping for the specified key.
- containsKey(Object) - Method in class aaron.util.HashMap
- Returns true if this map contains a mapping for the specified key.
- containsNullValue() - Method in class aaron.util.HashMap
- Special-case code for containsValue with null argument
- containsValue(Object) - Method in class aaron.util.AbstractMap
- Returns true if this map maps one or more keys to this value.
- containsValue(Object) - Method in class aaron.util.HashMap
- Returns true if this map maps one or more keys to the specified value.
- containsValue(Object) - Method in class aaron.util.LinkedHashMap
- Returns true if this map maps one or more keys to the specified value.
- createEntry(int, Object, Object, int) - Method in class aaron.util.HashMap
- Like addEntry except that this version is used when creating entries as part of Map construction or "pseudo-construction" (cloning, deserialization).
- createEntry(int, Object, Object, int) - Method in class aaron.util.LinkedHashMap
- This override differs from addEntry in that it doesn't resize the table or remove the eldest entry.
- current - Variable in class aaron.util.HashMap.HashIterator
D
- DEFAULT_INITIAL_CAPACITY - Static variable in class aaron.util.HashMap
- The default initial capacity - MUST be a power of two.
- DEFAULT_LOAD_FACTOR - Static variable in class aaron.util.HashMap
- The load fast used when none specified in constructor.
E
- entrySet() - Method in class aaron.util.AbstractMap
- Returns a set view of the mappings contained in this map.
- entrySet - Variable in class aaron.util.HashMap
- entrySet() - Method in class aaron.util.HashMap
- Returns a collection view of the mappings contained in this map.
- eq(Object, Object) - Static method in class aaron.util.AbstractMap.SimpleEntry
- eq(Object, Object) - Method in class aaron.util.HashMap
- Check for equality of non-null reference x and possibly-null y.
- equals(Object) - Method in class aaron.util.AbstractMap.SimpleEntry
- equals(Object) - Method in class aaron.util.AbstractMap
- Compares the specified object with this map for equality.
- equals(Object) - Method in class aaron.util.HashMap.Entry
- expectedModCount - Variable in class aaron.util.HashMap.HashIterator
- expectedModCount - Variable in class aaron.util.LinkedHashMap.LinkedHashIterator
- The modCount value that the iterator believes that the backing List should have.
G
- get(Object) - Method in class aaron.util.AbstractMap
- Returns the value to which this map maps the specified key.
- get(Object) - Method in class aaron.util.HashMap
- Returns the value to which the specified key is mapped in this identity hash map, or null if the map contains no mapping for this key.
- get(Object) - Method in class aaron.util.LinkedHashMap
- Returns the value to which this map maps the specified key.
- getEntry(Object) - Method in class aaron.util.HashMap
- Returns the entry associated with the specified key in the HashMap.
- getKey() - Method in class aaron.util.AbstractMap.SimpleEntry
- getKey() - Method in class aaron.util.HashMap.Entry
- getValue() - Method in class aaron.util.AbstractMap.SimpleEntry
- getValue() - Method in class aaron.util.HashMap.Entry
H
- HashMap - class aaron.util.HashMap.
- Hash table based implementation of the Map interface.
- HashMap(int, float) - Constructor for class aaron.util.HashMap
- Constructs an empty HashMap with the specified initial capacity and load factor.
- HashMap(int) - Constructor for class aaron.util.HashMap
- Constructs an empty HashMap with the specified initial capacity and the default load factor (0.75).
- HashMap() - Constructor for class aaron.util.HashMap
- Constructs an empty HashMap with the default initial capacity (16) and the default load factor (0.75).
- HashMap(Map) - Constructor for class aaron.util.HashMap
- Constructs a new HashMap with the same mappings as the specified Map.
- HashMap.Entry - class aaron.util.HashMap.Entry.
- HashMap.Entry(int, Object, Object, HashMap.Entry) - Constructor for class aaron.util.HashMap.Entry
- Create new entry.
- HashMap.EntryIterator - class aaron.util.HashMap.EntryIterator.
- HashMap.EntryIterator() - Constructor for class aaron.util.HashMap.EntryIterator
- HashMap.EntrySet - class aaron.util.HashMap.EntrySet.
- HashMap.EntrySet() - Constructor for class aaron.util.HashMap.EntrySet
- HashMap.HashIterator - class aaron.util.HashMap.HashIterator.
- HashMap.HashIterator() - Constructor for class aaron.util.HashMap.HashIterator
- HashMap.KeyIterator - class aaron.util.HashMap.KeyIterator.
- HashMap.KeyIterator() - Constructor for class aaron.util.HashMap.KeyIterator
- HashMap.KeySet - class aaron.util.HashMap.KeySet.
- HashMap.KeySet() - Constructor for class aaron.util.HashMap.KeySet
- HashMap.ValueIterator - class aaron.util.HashMap.ValueIterator.
- HashMap.ValueIterator() - Constructor for class aaron.util.HashMap.ValueIterator
- HashMap.Values - class aaron.util.HashMap.Values.
- HashMap.Values() - Constructor for class aaron.util.HashMap.Values
- hasNext() - Method in class aaron.util.HashMap.HashIterator
- hasNext() - Method in class aaron.util.LinkedHashMap.LinkedHashIterator
- hash - Variable in class aaron.util.HashMap.Entry
- hash(Object) - Method in class aaron.util.HashMap
- Returns a hash code for non-null Object x.
- hashCode() - Method in class aaron.util.AbstractMap.SimpleEntry
- hashCode() - Method in class aaron.util.AbstractMap
- Returns the hash code value for this map.
- hashCode() - Method in class aaron.util.HashMap.Entry
- header - Variable in class aaron.util.LinkedHashMap
- The head of the doubly linked list.
I
- index - Variable in class aaron.util.HashMap.HashIterator
- indexFor(int, int) - Static method in class aaron.util.HashMap
- Returns index for hash code h.
- init() - Method in class aaron.util.HashMap
- Initialization hook for subclasses.
- init() - Method in class aaron.util.LinkedHashMap
- Called by superclass constructors and pseudoconstructors (clone, readObject) before any entries are inserted into the map.
- isEmpty() - Method in class aaron.util.AbstractMap
- Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class aaron.util.HashMap
- Returns true if this map contains no key-value mappings.
- iterator() - Method in class aaron.util.HashMap.EntrySet
- iterator() - Method in class aaron.util.HashMap.KeySet
- iterator() - Method in class aaron.util.HashMap.Values
K
- key - Variable in class aaron.util.AbstractMap.SimpleEntry
- key - Variable in class aaron.util.HashMap.Entry
- keySet - Variable in class aaron.util.AbstractMap
- Each of these fields are initialized to contain an instance of the appropriate view the first time this view is requested.
- keySet() - Method in class aaron.util.AbstractMap
- Returns a Set view of the keys contained in this map.
- keySet() - Method in class aaron.util.HashMap
- Returns a set view of the keys contained in this map.
L
- LinkedHashMap - class aaron.util.LinkedHashMap.
- Hash table and linked list implementation of the Map interface, with predictable iteration order.
- LinkedHashMap(int, float) - Constructor for class aaron.util.LinkedHashMap
- Constructs an empty insertion-ordered LinkedHashMap instance with the specified initial capacity and load factor.
- LinkedHashMap(int) - Constructor for class aaron.util.LinkedHashMap
- Constructs an empty insertion-ordered LinkedHashMap instance with the specified initial capacity and a default load factor (0.75).
- LinkedHashMap() - Constructor for class aaron.util.LinkedHashMap
- Constructs an empty insertion-ordered LinkedHashMap instance with a default capacity (16) and load factor (0.75).
- LinkedHashMap(Map) - Constructor for class aaron.util.LinkedHashMap
- Constructs an insertion-ordered LinkedHashMap instance with the same mappings as the specified map.
- LinkedHashMap(int, float, boolean) - Constructor for class aaron.util.LinkedHashMap
- Constructs an empty LinkedHashMap instance with the specified initial capacity, load factor and ordering mode.
- LinkedHashMap.Entry - class aaron.util.LinkedHashMap.Entry.
- LinkedHashMap entry.
- LinkedHashMap.Entry(int, Object, Object, HashMap.Entry) - Constructor for class aaron.util.LinkedHashMap.Entry
- LinkedHashMap.EntryIterator - class aaron.util.LinkedHashMap.EntryIterator.
- LinkedHashMap.EntryIterator() - Constructor for class aaron.util.LinkedHashMap.EntryIterator
- LinkedHashMap.KeyIterator - class aaron.util.LinkedHashMap.KeyIterator.
- LinkedHashMap.KeyIterator() - Constructor for class aaron.util.LinkedHashMap.KeyIterator
- LinkedHashMap.LinkedHashIterator - class aaron.util.LinkedHashMap.LinkedHashIterator.
- LinkedHashMap.LinkedHashIterator() - Constructor for class aaron.util.LinkedHashMap.LinkedHashIterator
- LinkedHashMap.ValueIterator - class aaron.util.LinkedHashMap.ValueIterator.
- LinkedHashMap.ValueIterator() - Constructor for class aaron.util.LinkedHashMap.ValueIterator
- lastReturned - Variable in class aaron.util.LinkedHashMap.LinkedHashIterator
- loadFactor - Variable in class aaron.util.HashMap
- The load factor for the hash table.
- loadFactor() - Method in class aaron.util.HashMap
M
- MAXIMUM_CAPACITY - Static variable in class aaron.util.HashMap
- The maximum capacity, used if a higher value is implicitly specified by either of the constructors with arguments.
- maskNull(Object) - Static method in class aaron.util.HashMap
- Returns internal representation for key.
- modCount - Variable in class aaron.util.HashMap
- The number of times this HashMap has been structurally modified Structural modifications are those that change the number of mappings in the HashMap or otherwise modify its internal structure (e.g., rehash).
N
- NULL_KEY - Static variable in class aaron.util.HashMap
- Value representing null keys inside tables.
- newEntryIterator() - Method in class aaron.util.HashMap
- newEntryIterator() - Method in class aaron.util.LinkedHashMap
- newKeyIterator() - Method in class aaron.util.HashMap
- newKeyIterator() - Method in class aaron.util.LinkedHashMap
- newValueIterator() - Method in class aaron.util.HashMap
- newValueIterator() - Method in class aaron.util.LinkedHashMap
- next - Variable in class aaron.util.HashMap.Entry
- next() - Method in class aaron.util.HashMap.EntryIterator
- next - Variable in class aaron.util.HashMap.HashIterator
- next() - Method in class aaron.util.HashMap.KeyIterator
- next() - Method in class aaron.util.HashMap.ValueIterator
- next() - Method in class aaron.util.LinkedHashMap.EntryIterator
- next() - Method in class aaron.util.LinkedHashMap.KeyIterator
- next() - Method in class aaron.util.LinkedHashMap.ValueIterator
- nextEntry() - Method in class aaron.util.HashMap.HashIterator
- nextEntry - Variable in class aaron.util.LinkedHashMap.LinkedHashIterator
- nextEntry() - Method in class aaron.util.LinkedHashMap.LinkedHashIterator
P
- put(Object, Object) - Method in class aaron.util.AbstractMap
- Associates the specified value with the specified key in this map (optional operation).
- put(Object, Object) - Method in class aaron.util.HashMap
- Associates the specified value with the specified key in this map.
- putAll(Map) - Method in class aaron.util.AbstractMap
- Copies all of the mappings from the specified map to this map (optional operation).
- putAll(Map) - Method in class aaron.util.HashMap
- Copies all of the mappings from the specified map to this map These mappings will replace any mappings that this map had for any of the keys currently in the specified map.
- putAllForCreate(Map) - Method in class aaron.util.HashMap
- putForCreate(Object, Object) - Method in class aaron.util.HashMap
- This method is used instead of put by constructors and pseudoconstructors (clone, readObject).
R
- readObject(ObjectInputStream) - Method in class aaron.util.HashMap
- Reconstitute the HashMap instance from a stream (i.e., deserialize it).
- recordAccess(HashMap) - Method in class aaron.util.HashMap.Entry
- This method is invoked whenever the value in an entry is overwritten by an invocation of put(k,v) for a key k that's already in the HashMap.
- recordAccess(HashMap) - Method in class aaron.util.LinkedHashMap.Entry
- This method is invoked by the superclass whenever the value of a pre-existing entry is read by Map.get or modified by Map.set.
- recordRemoval(HashMap) - Method in class aaron.util.HashMap.Entry
- This method is invoked whenever the entry is removed from the table.
- recordRemoval(HashMap) - Method in class aaron.util.LinkedHashMap.Entry
- remove(Object) - Method in class aaron.util.AbstractMap
- Removes the mapping for this key from this map if present (optional operation).
- remove(Object) - Method in class aaron.util.HashMap.EntrySet
- remove() - Method in class aaron.util.HashMap.HashIterator
- remove(Object) - Method in class aaron.util.HashMap.KeySet
- remove(Object) - Method in class aaron.util.HashMap
- Removes the mapping for this key from this map if present.
- remove() - Method in class aaron.util.LinkedHashMap.Entry
- Remove this entry from the linked list.
- remove() - Method in class aaron.util.LinkedHashMap.LinkedHashIterator
- removeEldestEntry(Map.Entry) - Method in class aaron.util.LinkedHashMap
- Returns true if this map should remove its eldest entry.
- removeEntryForKey(Object) - Method in class aaron.util.HashMap
- Removes and returns the entry associated with the specified key in the HashMap.
- removeMapping(Object) - Method in class aaron.util.HashMap
- Special version of remove for EntrySet.
- resize(int) - Method in class aaron.util.HashMap
- Rehashes the contents of this map into a new HashMap instance with a larger capacity.
S
- serialVersionUID - Static variable in class aaron.util.HashMap
- setValue(Object) - Method in class aaron.util.AbstractMap.SimpleEntry
- setValue(Object) - Method in class aaron.util.HashMap.Entry
- size() - Method in class aaron.util.AbstractMap
- Returns the number of key-value mappings in this map.
- size() - Method in class aaron.util.HashMap.EntrySet
- size() - Method in class aaron.util.HashMap.KeySet
- size() - Method in class aaron.util.HashMap.Values
- size - Variable in class aaron.util.HashMap
- The number of key-value mappings contained in this identity hash map.
- size() - Method in class aaron.util.HashMap
- Returns the number of key-value mappings in this map.
T
- table - Variable in class aaron.util.HashMap
- The table, resized as necessary.
- threshold - Variable in class aaron.util.HashMap
- The next size value at which to resize (capacity * load factor).
- toString() - Method in class aaron.util.AbstractMap.SimpleEntry
- toString() - Method in class aaron.util.AbstractMap
- Returns a string representation of this map.
- toString() - Method in class aaron.util.HashMap.Entry
- transfer(HashMap.Entry[]) - Method in class aaron.util.HashMap
- Transfer all entries from current table to newTable.
- transfer(HashMap.Entry[]) - Method in class aaron.util.LinkedHashMap
- Transfer all entries to new table array.
U
- unmaskNull(Object) - Static method in class aaron.util.HashMap
- Returns key represented by specified internal representation.
V
- value - Variable in class aaron.util.AbstractMap.SimpleEntry
- value - Variable in class aaron.util.HashMap.Entry
- values - Variable in class aaron.util.AbstractMap
- values() - Method in class aaron.util.AbstractMap
- Returns a collection view of the values contained in this map.
- values() - Method in class aaron.util.HashMap
- Returns a collection view of the values contained in this map.
W
- writeObject(ObjectOutputStream) - Method in class aaron.util.HashMap
- Save the state of the HashMap instance to a stream (i.e., serialize it).
A B C D E G H I K L M N P R S T U V W
|
|||||||||
| Home >> All >> aaron >> [ util overview ] | PREV NEXT | ||||||||