public class ArraySortedEntryList<A,B> extends ArraySortedList<Map.Entry<A,B>> implements SortedEntryList<A,B>
modCount
Constructor and Description |
---|
ArraySortedEntryList() |
ArraySortedEntryList(Comparator<? super A> keyComparator) |
ArraySortedEntryList(Comparator<? super A> keyComparator,
int capacity) |
ArraySortedEntryList(Comparator<? super A> keyComparator,
List<? extends Map.Entry<A,B>> elems) |
ArraySortedEntryList(Comparator<? super A> keyComparator,
Map.Entry<A,B>... elems) |
ArraySortedEntryList(int capacity) |
ArraySortedEntryList(List<? extends Map.Entry<A,B>> elems) |
ArraySortedEntryList(Map.Entry<A,B>... elems) |
Modifier and Type | Method and Description |
---|---|
SortedMap<A,B> |
asMap() |
Comparator<? super A> |
keyComparator() |
static <A,B> Comparator<Map.Entry<A,B>> |
lift(Comparator<? super A> c) |
void |
put(A key,
B value) |
void |
putUnchecked(A key,
B value) |
add, addAll, addAll, addUnchecked, asSet, comparator, first, get, last, size
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
comparator, first, last
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
public ArraySortedEntryList()
public ArraySortedEntryList(int capacity)
public ArraySortedEntryList(Comparator<? super A> keyComparator)
public ArraySortedEntryList(Comparator<? super A> keyComparator, int capacity)
public ArraySortedEntryList(Comparator<? super A> keyComparator, List<? extends Map.Entry<A,B>> elems)
public ArraySortedEntryList(Comparator<? super A> keyComparator, Map.Entry<A,B>... elems)
public static <A,B> Comparator<Map.Entry<A,B>> lift(Comparator<? super A> c)
public Comparator<? super A> keyComparator()
keyComparator
in interface SortedEntryList<A,B>
see also the complete user documentation .