E - type of elements stored in the listK - type of keypublic class Key1List<E,K> extends KeyListImpl<E>
| Modifier and Type | Class and Description |
|---|---|
static class |
Key1List.Builder<E,K>
Builder to construct Key1List instances.
|
DEFAULT_CAPACITY| Modifier and Type | Method and Description |
|---|---|
java.util.Map<K,E> |
asMap1()
Returns an immutable map view to the key map.
|
boolean |
containsKey1(K key)
Checks whether an element with specified key exists.
|
Key1List<E,K> |
copy()
Returns a shallow copy of this GapList instance
(the new list will contain the same elements as the source list, i.e. the elements themselves are not copied).
|
Key1List<E,K> |
crop()
Returns a copy this list but without elements.
|
GapList<E> |
getAll(E elem)
Returns all elements in the list equal to the specified element.
|
GapList<E> |
getAllByKey1(K key)
Returns all elements with specified key.
|
E |
getByKey1(K key)
Returns element with specified key.
|
int |
getCount(E elem)
Counts how many times the specified element is contained in the list.
|
int |
getCountByKey1(K key)
Returns the number of elements with specified key.
|
java.util.Set<E> |
getDistinct()
Returns distinct elements in the list.
|
java.util.Set<K> |
getDistinctKeys1()
Returns all distinct keys in the same order as in the key map.
|
Mapper<E,K> |
getKey1Mapper()
Returns mapper for key map.
|
int |
indexOfKey1(K key)
Returns index of first element in list with specified key.
|
void |
invalidateKey1(K oldKey,
K newKey,
E elem)
Invalidate key value of element.
|
E |
put(E elem)
Adds or replaces element.
|
E |
putByKey1(E elem)
Adds or replaces element with specified key.
|
GapList<E> |
removeAll(E elem)
Removes all equal elements.
|
GapList<E> |
removeAllByKey1(K key)
Removes all elements with specified key.
|
E |
removeByKey1(K key)
Removes element with specified key.
|
add, add, addIf, asSet, binarySearch, capacity, clear, clone, contains, containsKey, create, create, create, create, ensureCapacity, get, getAllByKey, getByKey, getCountByKey, getDistinctKeys, getKeyMapper, indexOf, indexOfKey, indexOfKey, set, size, sortdoCreate, EMPTY, getAll, getDefaultElem, init, init, init, init, mappedList, remove, trimToSize, unmodifiableListaddAll, addAll, addAll, addAll, addAll, addAll, addFirst, addIfAbsent, addLast, binarySearch, containsAll, containsAny, copy, copy, descendingIterator, drag, element, equals, fill, fill, filter, getArray, getFirst, getLast, hashCode, init, isEmpty, iterator, lastIndexOf, listIterator, listIterator, move, move, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, remove, removeAll, removeAll, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, resize, retainAll, retainAll, reverse, reverse, rotate, rotate, setAll, setAll, setAll, sort, swap, swap, toArray, toArray, toArray, toStringpublic Key1List<E,K> copy()
IListcopy in class KeyListImpl<E>IList.clone()public Key1List<E,K> crop()
KeyListImplcrop in class KeyListImpl<E>public GapList<E> getAll(E elem)
IListgetAll in class KeyListImpl<E>elem - element to look forpublic int getCount(E elem)
IListgetCount in class KeyListImpl<E>elem - element to countpublic GapList<E> removeAll(E elem)
IListremoveAll in class KeyListImpl<E>elem - elementpublic java.util.Set<E> getDistinct()
IListgetDistinct in class KeyListImpl<E>public E put(E elem)
KeyListImplelem - elementpublic Mapper<E,K> getKey1Mapper()
public java.util.Map<K,E> asMap1()
public int indexOfKey1(K key)
key - keypublic boolean containsKey1(K key)
key - keypublic E getByKey1(K key)
key - keypublic GapList<E> getAllByKey1(K key)
key - keypublic int getCountByKey1(K key)
key - keypublic E removeByKey1(K key)
key - keypublic GapList<E> removeAllByKey1(K key)
key - keypublic java.util.Set<K> getDistinctKeys1()
public E putByKey1(E elem)
elem - elementpublic void invalidateKey1(K oldKey, K newKey, E elem)
oldKey - old key valuenewKey - new key valueelem - element to invalidate (can be null if there are no duplicates with this key)