public interface ByteList extends List
The ByteList is an immutable ordered collection of
byte.
int getLength()
bytes in the list. The range of
valid child object indices is 0 to length-1 inclusive.boolean contains(byte item)
byte item is a
member of this list.item - byte whose presence in this list
is to be tested.byte
item.byte item(int index)
throws XSException
indexth item in the collection. The index
starts at 0.index - 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 or less than zero.Copyright © 2018–2021 mhoffrogge. All rights reserved.