Modifier and Type | Method and Description |
---|---|
boolean |
KeyValuePair.equals(KeyValuePair<? extends TKey,? extends TValue> kvp)
Compares two key/value pairs for equality.
|
Modifier and Type | Method and Description |
---|---|
void |
IHashtable.add(KeyValuePair<? extends TKey,? extends TValue> kvp)
Adds an element represented by the provided key/value pair if the key is not already present.
|
boolean |
IHashtable.contains(KeyValuePair<? extends TKey,? extends TValue> kvp)
Returns true if the key of the key/value pair exists in the key collection
|
boolean |
IHashtable.remove(KeyValuePair<? extends TKey,? extends TValue> kvp)
Removes a key/value pair based on its key.
|
Modifier and Type | Method and Description |
---|---|
KeyValuePair<TKey,TValue> |
AscendingOrderKeyValuePairIterator.next()
Returns the next element in the iteration.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<KeyValuePair<TKey,TValue>> |
SharedAvlHashtable.iterator()
Returns all key/value pairs in a list copy of key/value pairs.
|
java.util.Iterator<KeyValuePair<TKey,TValue>> |
AvlHashtable.iterator()
Returns an iterator of key/value pairs.
|
Modifier and Type | Method and Description |
---|---|
void |
AvlHashtable.add(KeyValuePair<? extends TKey,? extends TValue> kvp)
Adds an element represented by the provided key/value pair if the key is not already present.
|
boolean |
AvlHashtable.contains(KeyValuePair<? extends TKey,? extends TValue> kvp)
Returns true if a key exists in the key collection.
|
boolean |
AvlHashtable.remove(KeyValuePair<? extends TKey,? extends TValue> kvp)
Removes a key/value pair based on its key.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<KeyValuePair<TKey,TValue>> |
AvlBiMap.iterator() |
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<KeyValuePair<TKey,TValue>> |
ListMap.iterator()
Returns an iterator of the collection.
|
java.util.Iterator<KeyValuePair<TKey,TValue>> |
AvlTreeList.iterator()
Returns an ascending key order iterator.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ListMap.add(KeyValuePair<? extends TKey,? extends TValue> kvp)
Adds an item to the collection.
|
boolean |
IListMap.add(KeyValuePair<? extends TKey,? extends TValue> kvp)
Adds a new key/value pair.
|
boolean |
AvlTreeList.add(KeyValuePair<? extends TKey,? extends TValue> kvp)
Adds a new key/value pair.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<KeyValuePair<TKey,TValue>> |
KeyValueSessionStore.iterator() |
Modifier and Type | Method and Description |
---|---|
static <K,V> K |
Tuples.kvpKeySelector(KeyValuePair<K,V> kvp)
Calls getKey() on map entries specified
|
static <K,V> V |
Tuples.kvpValueSelector(KeyValuePair<K,V> kvp)
Calls getValue() on key/value pair function arguments
|