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