|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.unimi.dsi.fastutil.objects.ReferenceCollections.SynchronizedCollection<K>
it.unimi.dsi.fastutil.objects.ReferenceLists.SynchronizedList<K>
public static class ReferenceLists.SynchronizedList<K>
A synchronized wrapper class for lists.
Field Summary | |
---|---|
static long |
serialVersionUID
|
Method Summary | |
---|---|
void |
add(int i,
K k)
|
boolean |
addAll(int index,
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. |
boolean |
equals(Object o)
|
K |
get(int i)
|
void |
getElements(int from,
Object[] a,
int offset,
int length)
Copies (hopefully quickly) elements of this type-specific list into the given array. |
int |
hashCode()
|
int |
indexOf(Object k)
|
int |
lastIndexOf(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. |
ObjectListIterator<K> |
objectListIterator()
Deprecated. |
ObjectListIterator<K> |
objectListIterator(int i)
Deprecated. |
ReferenceList<K> |
referenceSubList(int from,
int to)
Deprecated. |
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. |
ReferenceList<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. |
Methods inherited from class it.unimi.dsi.fastutil.objects.ReferenceCollections.SynchronizedCollection |
---|
add, addAll, clear, contains, containsAll, isEmpty, iterator, objectIterator, rem, remove, removeAll, retainAll, size, toArray, toArray, toString |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceList |
---|
iterator |
Methods inherited from interface java.util.List |
---|
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toArray, toArray |
Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceCollection |
---|
objectIterator, toArray |
Field Detail |
---|
public static final long serialVersionUID
Method Detail |
---|
public K get(int i)
get
in interface List<K>
public K set(int i, K k)
set
in interface List<K>
public void add(int i, K k)
add
in interface List<K>
public K remove(int i)
remove
in interface List<K>
public int indexOf(Object k)
indexOf
in interface List<K>
public int lastIndexOf(Object k)
lastIndexOf
in interface List<K>
public boolean addAll(int index, Collection<? extends K> c)
addAll
in interface List<K>
public void getElements(int from, Object[] a, int offset, int length)
ReferenceList
getElements
in interface ReferenceList<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)
ReferenceList
removeElements
in interface ReferenceList<K>
from
- the start index (inclusive).to
- the end index (exclusive).public void addElements(int index, K[] a, int offset, int length)
ReferenceList
addElements
in interface ReferenceList<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)
ReferenceList
addElements
in interface ReferenceList<K>
index
- the index at which to add elements.a
- the array containing the elements.public void size(int size)
ReferenceList
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 ReferenceList<K>
size
- the new size.public ObjectListIterator<K> listIterator()
ReferenceList
listIterator
in interface ReferenceList<K>
listIterator
in interface List<K>
ReferenceList.listIterator()
public ObjectListIterator<K> listIterator(int i)
ReferenceList
listIterator
in interface ReferenceList<K>
listIterator
in interface List<K>
ReferenceList.listIterator(int)
@Deprecated public ObjectListIterator<K> objectListIterator()
ReferenceList
objectListIterator
in interface ReferenceList<K>
ReferenceList.listIterator()
@Deprecated public ObjectListIterator<K> objectListIterator(int i)
ReferenceList
objectListIterator
in interface ReferenceList<K>
ReferenceList.listIterator(int)
public ReferenceList<K> subList(int from, int to)
ReferenceList
from
, inclusive, to the index to
, exclusive.
Note that this specification strengthens the one given in List.subList(int,int)
.
subList
in interface ReferenceList<K>
subList
in interface List<K>
List.subList(int,int)
@Deprecated public ReferenceList<K> referenceSubList(int from, int to)
ReferenceList
from
, inclusive, to the index to
, exclusive.
referenceSubList
in interface ReferenceList<K>
List.subList(int,int)
public boolean equals(Object o)
equals
in interface Collection<K>
equals
in interface List<K>
equals
in class Object
public int hashCode()
hashCode
in interface Collection<K>
hashCode
in interface List<K>
hashCode
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |