ByteCollection, ByteIterable, ByteList, ByteStack, Stack<java.lang.Byte>, java.io.Serializable, java.lang.Cloneable, java.lang.Comparable<java.util.List<? extends java.lang.Byte>>, java.lang.Iterable<java.lang.Byte>, java.util.Collection<java.lang.Byte>, java.util.List<java.lang.Byte>, java.util.RandomAccesspublic static class ByteLists.Singleton extends AbstractByteList 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.
AbstractByteList.ByteSubList| Modifier and Type | Method | Description |
|---|---|---|
boolean |
addAll(int i,
ByteCollection 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,
ByteList c) |
Inserts all of the elements in the specified type-specific list into this
type-specific list at the specified position (optional operation).
|
boolean |
addAll(int i,
java.util.Collection<? extends java.lang.Byte> c) |
Adds all of the elements in the specified collection to this list (optional
operation).
|
boolean |
addAll(ByteCollection c) |
Adds all elements of the given type-specific collection to this collection.
|
boolean |
addAll(ByteList c) |
Appends all of the elements in the specified type-specific list to the end of
this type-specific list (optional operation).
|
boolean |
addAll(java.util.Collection<? extends java.lang.Byte> c) |
|
void |
clear() |
|
java.lang.Object |
clone() |
|
boolean |
contains(byte k) |
Returns true if this list contains the specified element.
|
byte |
getByte(int i) |
Returns the element at the specified position in this list.
|
ByteListIterator |
iterator() |
Returns a type-specific iterator on the elements of this collection.
|
ByteListIterator |
listIterator() |
Returns a type-specific list iterator on the list.
|
ByteListIterator |
listIterator(int i) |
Returns a type-specific list iterator on the list starting at a given index.
|
boolean |
rem(byte k) |
Removes a single instance of the specified element from this collection, if
it is present (optional operation).
|
boolean |
removeAll(ByteCollection c) |
Remove from this collection all elements in the given type-specific
collection.
|
boolean |
removeAll(java.util.Collection<?> c) |
|
byte |
removeByte(int i) |
Removes the element at the specified position in this list (optional
operation).
|
boolean |
retainAll(ByteCollection c) |
Retains in this collection only elements from the given type-specific
collection.
|
boolean |
retainAll(java.util.Collection<?> c) |
|
int |
size() |
|
void |
size(int size) |
Sets the size of this list.
|
ByteList |
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. |
byte[] |
toByteArray() |
Returns a primitive type array containing the items of this collection.
|
add, contains, containsAll, remove, toArray, toByteArrayadd, add, addElements, addElements, compareTo, equals, getElements, hashCode, indexOf, lastIndexOf, peekByte, popByte, push, removeElements, set, topByte, toStringcontainsAll, removeIf, removeIf, toArray, toByteArrayforEach, forEachadd, add, contains, get, indexOf, lastIndexOf, remove, remove, setpublic byte getByte(int i)
ByteListpublic boolean rem(byte k)
AbstractByteList
This implementation delegates to indexOf().
rem in interface ByteCollectionrem in class AbstractByteListList.remove(Object)public byte removeByte(int i)
AbstractByteList
This implementation always throws an UnsupportedOperationException.
removeByte in interface ByteListremoveByte in class AbstractByteListList.remove(int)public boolean contains(byte k)
AbstractByteList
This implementation delegates to indexOf().
contains in interface ByteCollectioncontains in class AbstractByteListList.contains(Object)public byte[] toByteArray()
ByteCollectiontoByteArray in interface ByteCollectiontoByteArray in class AbstractByteCollectionCollection.toArray()public ByteListIterator listIterator()
AbstractByteList
This implementation delegates to listIterator(0).
listIterator in interface ByteListlistIterator in interface java.util.List<java.lang.Byte>listIterator in class AbstractByteListList.listIterator()public ByteListIterator iterator()
AbstractByteList
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 AbstractByteList.listIterator().
iterator in interface ByteCollectioniterator in interface ByteIterableiterator in interface ByteListiterator in interface java.util.Collection<java.lang.Byte>iterator in interface java.lang.Iterable<java.lang.Byte>iterator in interface java.util.List<java.lang.Byte>iterator in class AbstractByteListIterable.iterator()public ByteListIterator listIterator(int i)
AbstractByteListThis implementation is based on the random-access methods.
listIterator in interface ByteListlistIterator in interface java.util.List<java.lang.Byte>listIterator in class AbstractByteListList.listIterator(int)public ByteList subList(int from, int to)
ByteListfrom, inclusive, to the index to, exclusive.
Note that this specification strengthens the one given in
List.subList(int,int).
subList in interface ByteListsubList in interface java.util.List<java.lang.Byte>subList in class AbstractByteListList.subList(int,int)public boolean addAll(int i,
java.util.Collection<? extends java.lang.Byte> c)
AbstractByteListaddAll in interface java.util.List<java.lang.Byte>addAll in class AbstractByteListpublic boolean addAll(java.util.Collection<? extends java.lang.Byte> c)
AbstractByteList
This implementation delegates to the type-specific version of
List.addAll(int, Collection).
addAll in interface java.util.Collection<java.lang.Byte>addAll in interface java.util.List<java.lang.Byte>addAll in class AbstractByteListpublic boolean removeAll(java.util.Collection<?> c)
removeAll in interface java.util.Collection<java.lang.Byte>removeAll in interface java.util.List<java.lang.Byte>removeAll in class java.util.AbstractCollection<java.lang.Byte>public boolean retainAll(java.util.Collection<?> c)
retainAll in interface java.util.Collection<java.lang.Byte>retainAll in interface java.util.List<java.lang.Byte>retainAll in class java.util.AbstractCollection<java.lang.Byte>public boolean addAll(ByteList c)
AbstractByteList
This implementation delegates to the type-specific list version of
List.addAll(int, Collection).
addAll in interface ByteListaddAll in class AbstractByteListList.add(int,Object)public boolean addAll(int i,
ByteList c)
AbstractByteList
This implementation delegates to the type-specific version of
List.addAll(int, Collection).
addAll in interface ByteListaddAll in class AbstractByteListList.add(int,Object)public boolean addAll(int i,
ByteCollection c)
ByteListaddAll in interface ByteListaddAll in class AbstractByteListList.addAll(int,java.util.Collection)public boolean addAll(ByteCollection c)
AbstractByteList
This implementation delegates to the type-specific version of
List.addAll(int, Collection).
addAll in interface ByteCollectionaddAll in class AbstractByteListc - a type-specific collection.true if this collection changed as a result of the call.Collection.addAll(Collection)public boolean removeAll(ByteCollection c)
ByteCollectionremoveAll in interface ByteCollectionremoveAll in class AbstractByteCollectionc - a type-specific collection.true if this collection changed as a result of the call.Collection.removeAll(Collection)public boolean retainAll(ByteCollection c)
ByteCollectionretainAll in interface ByteCollectionretainAll in class AbstractByteCollectionc - 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.Byte>size in interface java.util.List<java.lang.Byte>size in class java.util.AbstractCollection<java.lang.Byte>public void size(int size)
ByteList
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 ByteListsize in class AbstractByteListsize - the new size.public void clear()
AbstractByteList
This implementation delegates to AbstractByteList.removeElements(int, int).
clear in interface java.util.Collection<java.lang.Byte>clear in interface java.util.List<java.lang.Byte>clear in class AbstractByteListpublic java.lang.Object clone()