public class IntMap<V> extends java.lang.Object implements java.lang.Iterable<IntMap.Entry<V>>
限定符和类型 | 类和说明 |
---|---|
static class |
IntMap.Entries<V> |
static class |
IntMap.Entry<V> |
static class |
IntMap.Keys |
static class |
IntMap.Values<V> |
限定符和类型 | 字段和说明 |
---|---|
int |
size |
构造器和说明 |
---|
IntMap()
Creates a new map with an initial capacity of 51 and a load factor of 0.8.
|
IntMap(int initialCapacity)
Creates a new map with a load factor of 0.8.
|
IntMap(int initialCapacity,
float loadFactor)
Creates a new map with the specified initial capacity and load factor.
|
IntMap(IntMap<? extends V> map)
Creates a new map identical to the specified map.
|
限定符和类型 | 方法和说明 |
---|---|
void |
clear() |
void |
clear(int maximumCapacity)
Clears the map and reduces the size of the backing arrays to be the specified capacity if they are larger.
|
boolean |
containsKey(int key) |
boolean |
containsValue(java.lang.Object value,
boolean identity)
Returns true if the specified value is in the map.
|
void |
ensureCapacity(int additionalCapacity)
Increases the size of the backing array to accommodate the specified number of additional items.
|
IntMap.Entries<V> |
entries()
Returns an iterator for the entries in the map.
|
boolean |
equals(java.lang.Object obj) |
int |
findKey(java.lang.Object value,
boolean identity,
int notFound)
Returns the key for the specified value, or notFound if it is not in the map.
|
V |
get(int key) |
V |
get(int key,
V defaultValue) |
int |
hashCode() |
java.util.Iterator<IntMap.Entry<V>> |
iterator() |
IntMap.Keys |
keys()
Returns an iterator for the keys in the map.
|
V |
put(int key,
V value) |
void |
putAll(IntMap<V> map) |
V |
remove(int key) |
void |
shrink(int maximumCapacity)
Reduces the size of the backing arrays to be the specified capacity or less.
|
java.lang.String |
toString() |
IntMap.Values<V> |
values()
Returns an iterator for the values in the map.
|
public IntMap()
public IntMap(int initialCapacity)
initialCapacity
- If not a power of two, it is increased to the next nearest power of two.public IntMap(int initialCapacity, float loadFactor)
initialCapacity
- If not a power of two, it is increased to the next nearest power of two.public V get(int key)
public V remove(int key)
public void shrink(int maximumCapacity)
public void clear(int maximumCapacity)
public void clear()
public boolean containsValue(java.lang.Object value, boolean identity)
identity
- If true, uses == to compare the specified value with values in the map. If false, uses
equals(Object)
.public boolean containsKey(int key)
public int findKey(java.lang.Object value, boolean identity, int notFound)
identity
- If true, uses == to compare the specified value with values in the map. If false, uses
equals(Object)
.public void ensureCapacity(int additionalCapacity)
public int hashCode()
hashCode
在类中 java.lang.Object
public boolean equals(java.lang.Object obj)
equals
在类中 java.lang.Object
public java.lang.String toString()
toString
在类中 java.lang.Object
public java.util.Iterator<IntMap.Entry<V>> iterator()
iterator
在接口中 java.lang.Iterable<IntMap.Entry<V>>
public IntMap.Entries<V> entries()
IntMap.Entries
constructor for nested or multithreaded iteration.public IntMap.Values<V> values()
IntMap.Entries
constructor for nested or multithreaded iteration.public IntMap.Keys keys()
IntMap.Entries
constructor for nested or multithreaded iteration.