|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.unimi.dsi.fastutil.objects.AbstractObjectCollection<K>
it.unimi.dsi.fastutil.objects.ObjectCollections.EmptyCollection<K>
it.unimi.dsi.fastutil.objects.ObjectLists.EmptyList<K>
public static class ObjectLists.EmptyList<K>
An immutable class representing an empty type-specific list.
This class may be useful to implement your own in case you subclass a type-specific list.
Field Summary | |
---|---|
static long |
serialVersionUID
|
Method Summary | |
---|---|
void |
add(int index,
K k)
|
boolean |
add(K k)
|
boolean |
addAll(Collection<? extends K> c)
Adds all elements of the given collection to this collection. |
boolean |
addAll(int i,
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. |
Object |
clone()
|
int |
compareTo(List<? extends K> 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 |
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. |
ObjectIterator<K> |
objectIterator()
Deprecated. |
ObjectListIterator<K> |
objectListIterator()
Deprecated. |
ObjectListIterator<K> |
objectListIterator(int i)
Deprecated. |
ObjectList<K> |
objectSubList(int from,
int to)
Deprecated. |
K |
remove(int i)
|
boolean |
removeAll(Collection<?> c)
Remove from this collection all elements in the given collection. |
void |
removeElements(int from,
int to)
Removes (hopefully quickly) elements of this type-specific list. |
K |
set(int index,
K k)
|
void |
size(int s)
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. |
Methods inherited from class it.unimi.dsi.fastutil.objects.ObjectCollections.EmptyCollection |
---|
clear, contains, equals, hashCode, iterator, size, toArray, toArray |
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractObjectCollection |
---|
containsAll, isEmpty, remove, retainAll, toString |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface it.unimi.dsi.fastutil.objects.ObjectList |
---|
iterator |
Methods inherited from interface java.util.List |
---|
clear, contains, containsAll, equals, hashCode, isEmpty, remove, retainAll, size, toArray, toArray |
Methods inherited from interface it.unimi.dsi.fastutil.objects.ObjectCollection |
---|
toArray |
Field Detail |
---|
public static final long serialVersionUID
Method Detail |
---|
public void add(int index, K k)
add
in interface List<K>
public boolean add(K k)
add
in interface Collection<K>
add
in interface List<K>
add
in class ObjectCollections.EmptyCollection<K>
public K remove(int i)
remove
in interface List<K>
public K set(int index, K k)
set
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(Collection<? extends K> c)
AbstractObjectCollection
addAll
in interface Collection<K>
addAll
in interface List<K>
addAll
in class AbstractObjectCollection<K>
c
- a collection.
true
if this collection changed as a result of the call.public boolean addAll(int i, Collection<? extends K> c)
addAll
in interface List<K>
public boolean removeAll(Collection<?> c)
AbstractObjectCollection
removeAll
in interface Collection<K>
removeAll
in interface List<K>
removeAll
in class AbstractObjectCollection<K>
c
- a collection.
true
if this collection changed as a result of the call.public K get(int i)
get
in interface List<K>
@Deprecated public ObjectIterator<K> objectIterator()
AbstractObjectCollection
objectIterator
in interface ObjectCollection<K>
objectIterator
in class AbstractObjectCollection<K>
ObjectCollection.iterator()
public ObjectListIterator<K> listIterator()
ObjectList
listIterator
in interface ObjectList<K>
listIterator
in interface List<K>
ObjectList.listIterator()
public ObjectListIterator<K> listIterator(int i)
ObjectList
listIterator
in interface ObjectList<K>
listIterator
in interface List<K>
ObjectList.listIterator(int)
@Deprecated public ObjectListIterator<K> objectListIterator()
ObjectList
objectListIterator
in interface ObjectList<K>
ObjectList.listIterator()
@Deprecated public ObjectListIterator<K> objectListIterator(int i)
ObjectList
objectListIterator
in interface ObjectList<K>
ObjectList.listIterator(int)
public ObjectList<K> subList(int from, int to)
ObjectList
from
, inclusive, to the index to
, exclusive.
Note that this specification strengthens the one given in List.subList(int,int)
.
subList
in interface ObjectList<K>
subList
in interface List<K>
List.subList(int,int)
@Deprecated public ObjectList<K> objectSubList(int from, int to)
ObjectList
from
, inclusive, to the index to
, exclusive.
objectSubList
in interface ObjectList<K>
List.subList(int,int)
public void getElements(int from, Object[] a, int offset, int length)
ObjectList
getElements
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)
ObjectList
removeElements
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)
ObjectList
addElements
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)
ObjectList
addElements
in interface ObjectList<K>
index
- the index at which to add elements.a
- the array containing the elements.public void size(int s)
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>
s
- the new size.public int compareTo(List<? extends K> o)
compareTo
in interface Comparable<List<? extends K>>
public Object clone()
clone
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |