public class ByteListImpl extends AbstractList implements ByteList
org.apache.xerces.xs.datatypes.ByteList
.Modifier and Type | Field and Description |
---|---|
protected String |
canonical |
protected byte[] |
data |
modCount
Constructor and Description |
---|
ByteListImpl(byte[] data) |
Modifier and Type | Method and Description |
---|---|
boolean |
contains(byte item)
Checks if the
byte item is a
member of this list. |
Object |
get(int index) |
int |
getLength()
The number of
byte s in the list. |
byte |
item(int index)
Returns the
index th item in the collection. |
int |
size() |
byte[] |
toByteArray()
Construct and return a byte array for bytes contained in this list.
|
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
add, add, addAll, addAll, clear, contains, containsAll, equals, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
protected final byte[] data
protected String canonical
public int getLength()
byte
s in the list. The range of
valid child object indices is 0 to length-1
inclusive.public boolean contains(byte item)
byte
item
is a
member of this list.public byte item(int index) throws XSException
index
th item in the collection. The index
starts at 0.item
in interface ByteList
index
- index into the collection.byte
at the index
th
position in the ByteList
.XSException
- INDEX_SIZE_ERR: if index
is greater than or equal to the
number of objects in the list.public Object get(int index)
get
in interface List
get
in class AbstractList
public int size()
size
in interface Collection
size
in interface List
size
in class AbstractCollection
public byte[] toByteArray()
ByteList
toByteArray
in interface ByteList
Copyright © 2021 JBoss by Red Hat. All rights reserved.