public interface LongMap<T>
| Modifier and Type | Interface and Description |
|---|---|
static interface |
LongMap.Entry<V> |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(long key) |
boolean |
containsValue(T value) |
Set<LongMap.Entry<T>> |
entrySet() |
boolean |
equals(Object o) |
T |
get(long key) |
int |
hashCode() |
boolean |
isEmpty() |
Set<Long> |
keySet() |
T |
put(long key,
T value) |
T |
remove(long key) |
int |
size() |
Collection<T> |
values() |
int size()
boolean isEmpty()
boolean containsKey(long key)
boolean containsValue(T value)
T get(long key)
T remove(long key)
void clear()
Collection<T> values()
Set<LongMap.Entry<T>> entrySet()
Copyright © 2015. All rights reserved.