public static class DoubleLists.Singleton extends AbstractDoubleList implements java.util.RandomAccess, java.io.Serializable, java.lang.Cloneable
This class may be useful to implement your own in case you subclass a type-specific list.
AbstractDoubleList.DoubleSubList| Modifier and Type | Method and Description |
|---|---|
boolean |
addAll(java.util.Collection<? extends java.lang.Double> c)
This implementation delegates to the type-specific version of
List.addAll(int, Collection). |
boolean |
addAll(DoubleCollection c)
Adds all elements of the given type-specific collection to this collection.
|
boolean |
addAll(DoubleList c)
Appends all of the elements in the specified type-specific list to the end of
this type-specific list (optional operation).
|
boolean |
addAll(int i,
java.util.Collection<? extends java.lang.Double> c)
Adds all of the elements in the specified collection to this list (optional
operation).
|
boolean |
addAll(int i,
DoubleCollection c)
Inserts all of the elements in the specified type-specific collection into
this type-specific list at the specified position (optional operation).
|
boolean |
addAll(int i,
DoubleList c)
Inserts all of the elements in the specified type-specific list into this
type-specific list at the specified position (optional operation).
|
void |
clear()
This implementation delegates to
AbstractDoubleList.removeElements(int, int). |
java.lang.Object |
clone() |
boolean |
contains(double k)
Returns true if this list contains the specified element.
|
double |
getDouble(int i)
Returns the element at the specified position in this list.
|
DoubleListIterator |
iterator()
Returns a type-specific iterator on the elements of this collection.
|
DoubleListIterator |
listIterator()
Returns a type-specific list iterator on the list.
|
DoubleListIterator |
listIterator(int i)
Returns a type-specific list iterator on the list starting at a given index.
|
boolean |
rem(double k)
Removes a single instance of the specified element from this collection, if
it is present (optional operation).
|
boolean |
removeAll(java.util.Collection<?> c) |
boolean |
removeAll(DoubleCollection c)
Remove from this collection all elements in the given type-specific
collection.
|
double |
removeDouble(int i)
Removes the element at the specified position in this list (optional
operation).
|
boolean |
retainAll(java.util.Collection<?> c) |
boolean |
retainAll(DoubleCollection c)
Retains in this collection only elements from the given type-specific
collection.
|
int |
size() |
void |
size(int size)
Sets the size of this list.
|
DoubleList |
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. |
double[] |
toDoubleArray()
Returns a primitive type array containing the items of this collection.
|
add, add, addElements, addElements, compareTo, equals, getElements, hashCode, indexOf, lastIndexOf, peekDouble, popDouble, push, removeElements, set, topDouble, toStringadd, contains, containsAll, remove, toArray, toDoubleArrayadd, add, contains, get, indexOf, lastIndexOf, remove, remove, setcontainsAll, isEmpty, replaceAll, sort, spliterator, toArray, toArraycontainsAll, removeIf, removeIf, toArray, toDoubleArrayforEach, forEachpeek, pop, push, toppublic double getDouble(int i)
DoubleListgetDouble in interface DoubleListList.get(int)public boolean rem(double k)
AbstractDoubleList
This implementation delegates to indexOf().
rem in interface DoubleCollectionrem in class AbstractDoubleListList.remove(Object)public double removeDouble(int i)
AbstractDoubleList
This implementation always throws an UnsupportedOperationException.
removeDouble in interface DoubleListremoveDouble in class AbstractDoubleListList.remove(int)public boolean contains(double k)
AbstractDoubleList
This implementation delegates to indexOf().
contains in interface DoubleCollectioncontains in class AbstractDoubleListList.contains(Object)public double[] toDoubleArray()
DoubleCollectiontoDoubleArray in interface DoubleCollectiontoDoubleArray in class AbstractDoubleCollectionCollection.toArray()public DoubleListIterator listIterator()
AbstractDoubleList
This implementation delegates to listIterator(0).
listIterator in interface DoubleListlistIterator in interface java.util.List<java.lang.Double>listIterator in class AbstractDoubleListList.listIterator()public DoubleListIterator iterator()
AbstractDoubleList
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.
This implementation delegates to AbstractDoubleList.listIterator().
iterator in interface DoubleCollectioniterator in interface DoubleIterableiterator in interface DoubleListiterator in interface java.lang.Iterable<java.lang.Double>iterator in interface java.util.Collection<java.lang.Double>iterator in interface java.util.List<java.lang.Double>iterator in class AbstractDoubleListIterable.iterator()public DoubleListIterator listIterator(int i)
AbstractDoubleListThis implementation is based on the random-access methods.
listIterator in interface DoubleListlistIterator in interface java.util.List<java.lang.Double>listIterator in class AbstractDoubleListList.listIterator(int)public DoubleList subList(int from, int to)
DoubleListfrom, inclusive, to the index to, exclusive.
Note that this specification strengthens the one given in
List.subList(int,int).
subList in interface DoubleListsubList in interface java.util.List<java.lang.Double>subList in class AbstractDoubleListList.subList(int,int)public boolean addAll(int i,
java.util.Collection<? extends java.lang.Double> c)
AbstractDoubleListaddAll in interface java.util.List<java.lang.Double>addAll in class AbstractDoubleListpublic boolean addAll(java.util.Collection<? extends java.lang.Double> c)
AbstractDoubleList
This implementation delegates to the type-specific version of
List.addAll(int, Collection).
addAll in interface java.util.Collection<java.lang.Double>addAll in interface java.util.List<java.lang.Double>addAll in class AbstractDoubleListpublic boolean removeAll(java.util.Collection<?> c)
removeAll in interface java.util.Collection<java.lang.Double>removeAll in interface java.util.List<java.lang.Double>removeAll in class java.util.AbstractCollection<java.lang.Double>public boolean retainAll(java.util.Collection<?> c)
retainAll in interface java.util.Collection<java.lang.Double>retainAll in interface java.util.List<java.lang.Double>retainAll in class java.util.AbstractCollection<java.lang.Double>public boolean addAll(DoubleList c)
AbstractDoubleList
This implementation delegates to the type-specific list version of
List.addAll(int, Collection).
addAll in interface DoubleListaddAll in class AbstractDoubleListList.add(int,Object)public boolean addAll(int i,
DoubleList c)
AbstractDoubleList
This implementation delegates to the type-specific version of
List.addAll(int, Collection).
addAll in interface DoubleListaddAll in class AbstractDoubleListList.add(int,Object)public boolean addAll(int i,
DoubleCollection c)
DoubleListaddAll in interface DoubleListaddAll in class AbstractDoubleListList.addAll(int,java.util.Collection)public boolean addAll(DoubleCollection c)
AbstractDoubleList
This implementation delegates to the type-specific version of
List.addAll(int, Collection).
addAll in interface DoubleCollectionaddAll in class AbstractDoubleListc - a type-specific collection.true if this collection changed as a result of the call.Collection.addAll(Collection)public boolean removeAll(DoubleCollection c)
DoubleCollectionremoveAll in interface DoubleCollectionremoveAll in class AbstractDoubleCollectionc - a type-specific collection.true if this collection changed as a result of the call.Collection.removeAll(Collection)public boolean retainAll(DoubleCollection c)
DoubleCollectionretainAll in interface DoubleCollectionretainAll in class AbstractDoubleCollectionc - a type-specific collection.true if this collection changed as a result of the call.Collection.retainAll(Collection)public int size()
size in interface java.util.Collection<java.lang.Double>size in interface java.util.List<java.lang.Double>size in class java.util.AbstractCollection<java.lang.Double>public void size(int size)
DoubleList
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 DoubleListsize in class AbstractDoubleListsize - the new size.public void clear()
AbstractDoubleList
This implementation delegates to AbstractDoubleList.removeElements(int, int).
clear in interface java.util.Collection<java.lang.Double>clear in interface java.util.List<java.lang.Double>clear in class AbstractDoubleListpublic java.lang.Object clone()
clone in class java.lang.Object