public class ByteListImpl extends AbstractList implements ByteList
jdk7u.jaxp.org.apache.xerces.external.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
bytes in the list. |
byte |
item(int index)
Returns the
indexth item in the collection. |
int |
size() |
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subListaddAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringprotected final byte[] data
protected String canonical
public int getLength()
bytes 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
indexth item in the collection. The index
starts at 0.item in interface ByteListindex - index into the collection.byte at the indexth
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 Listget in class AbstractListpublic int size()
size in interface Collectionsize in interface Listsize in class AbstractCollectionCopyright © 2018–2021 mhoffrogge. All rights reserved.