Constructor and Description |
---|
LinkedMapList(LinkedMap<K,?> parent) |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
contains(java.lang.Object obj) |
boolean |
containsAll(java.util.Collection<?> coll) |
K |
get(int index) |
int |
indexOf(java.lang.Object obj) |
java.util.Iterator<K> |
iterator() |
int |
lastIndexOf(java.lang.Object obj) |
java.util.ListIterator<K> |
listIterator() |
java.util.ListIterator<K> |
listIterator(int fromIndex) |
K |
remove(int index) |
boolean |
remove(java.lang.Object obj) |
boolean |
removeAll(java.util.Collection<?> coll) |
boolean |
removeIf(java.util.function.Predicate<? super K> filter) |
boolean |
retainAll(java.util.Collection<?> coll) |
int |
size() |
java.util.List<K> |
subList(int fromIndexInclusive,
int toIndexExclusive) |
java.lang.Object[] |
toArray() |
<T> T[] |
toArray(T[] array) |
add, add, addAll, equals, hashCode, removeRange, set
public int size()
public K get(int index)
public boolean contains(java.lang.Object obj)
public int indexOf(java.lang.Object obj)
public int lastIndexOf(java.lang.Object obj)
public boolean containsAll(java.util.Collection<?> coll)
public K remove(int index)
public boolean remove(java.lang.Object obj)
public boolean removeIf(java.util.function.Predicate<? super K> filter)
public boolean removeAll(java.util.Collection<?> coll)
public boolean retainAll(java.util.Collection<?> coll)
public void clear()
public java.lang.Object[] toArray()
public <T> T[] toArray(T[] array)
public java.util.Iterator<K> iterator()
public java.util.ListIterator<K> listIterator()
public java.util.ListIterator<K> listIterator(int fromIndex)