ObjectCollection<K>, ObjectIterable<K>, ObjectList<K>, java.io.Serializable, java.lang.Comparable<java.util.List<? extends K>>, java.lang.Iterable<K>, java.util.Collection<K>, java.util.List<K>ObjectLists.SynchronizedRandomAccessListpublic static class ObjectLists.SynchronizedList<K> extends ObjectCollections.SynchronizedCollection<K> implements ObjectList<K>, java.io.Serializable
| Modifier and Type | Method | Description |
|---|---|---|
void |
add(int i,
K k) |
|
boolean |
addAll(int index,
java.util.Collection<? extends K> c) |
|
void |
addElements(int index,
K[] a) |
Add (hopefully quickly) elements to this type-specific list.
|
void |
addElements(int index,
K[] a,
int offset,
int length) |
Add (hopefully quickly) elements to this type-specific list.
|
int |
compareTo(java.util.List<? extends K> o) |
|
boolean |
equals(java.lang.Object o) |
|
K |
get(int i) |
|
void |
getElements(int from,
java.lang.Object[] a,
int offset,
int length) |
Copies (hopefully quickly) elements of this type-specific list into the given
array.
|
int |
hashCode() |
|
int |
indexOf(java.lang.Object k) |
|
ObjectListIterator<K> |
iterator() |
Returns a type-specific iterator on the elements of this collection.
|
int |
lastIndexOf(java.lang.Object k) |
|
ObjectListIterator<K> |
listIterator() |
Returns a type-specific list iterator on the list.
|
ObjectListIterator<K> |
listIterator(int i) |
Returns a type-specific list iterator on the list starting at a given index.
|
K |
remove(int i) |
|
void |
removeElements(int from,
int to) |
Removes (hopefully quickly) elements of this type-specific list.
|
K |
set(int i,
K k) |
|
void |
size(int size) |
Sets the size of this list.
|
ObjectList<K> |
subList(int from,
int to) |
Returns a type-specific view of the portion of this list from the index
from, inclusive, to the index to, exclusive. |
public int indexOf(java.lang.Object k)
indexOf in interface java.util.List<K>public int lastIndexOf(java.lang.Object k)
lastIndexOf in interface java.util.List<K>public boolean addAll(int index,
java.util.Collection<? extends K> c)
addAll in interface java.util.List<K>public void getElements(int from,
java.lang.Object[] a,
int offset,
int length)
ObjectListgetElements in interface ObjectList<K>from - the start index (inclusive).a - the destination array.offset - the offset into the destination array where to store the first
element copied.length - the number of elements to be copied.public void removeElements(int from,
int to)
ObjectListremoveElements in interface ObjectList<K>from - the start index (inclusive).to - the end index (exclusive).public void addElements(int index,
K[] a,
int offset,
int length)
ObjectListaddElements in interface ObjectList<K>index - the index at which to add elements.a - the array containing the elements.offset - the offset of the first element to add.length - the number of elements to add.public void addElements(int index,
K[] a)
ObjectListaddElements in interface ObjectList<K>index - the index at which to add elements.a - the array containing the elements.public void size(int size)
ObjectList
If the specified size is smaller than the current size, the last elements are
discarded. Otherwise, they are filled with 0/null/false.
size in interface ObjectList<K>size - the new size.public ObjectListIterator<K> listIterator()
ObjectListlistIterator in interface java.util.List<K>listIterator in interface ObjectList<K>List.listIterator()public ObjectListIterator<K> iterator()
ObjectCollection
Note that this specification strengthens the one given in
Iterable.iterator(), which was already strengthened in the
corresponding type-specific class, but was weakened by the fact that this
interface extends Collection.
iterator in interface java.util.Collection<K>iterator in interface java.lang.Iterable<K>iterator in interface java.util.List<K>iterator in interface ObjectCollection<K>iterator in interface ObjectIterable<K>iterator in interface ObjectList<K>iterator in class ObjectCollections.SynchronizedCollection<K>Iterable.iterator()public ObjectListIterator<K> listIterator(int i)
ObjectListlistIterator in interface java.util.List<K>listIterator in interface ObjectList<K>List.listIterator(int)public ObjectList<K> subList(int from, int to)
ObjectListfrom, inclusive, to the index to, exclusive.
Note that this specification strengthens the one given in
List.subList(int,int).
subList in interface java.util.List<K>subList in interface ObjectList<K>List.subList(int,int)public boolean equals(java.lang.Object o)
equals in interface java.util.Collection<K>equals in interface java.util.List<K>equals in class ObjectCollections.SynchronizedCollection<K>public int hashCode()
hashCode in interface java.util.Collection<K>hashCode in interface java.util.List<K>hashCode in class ObjectCollections.SynchronizedCollection<K>