org.apache.xerces.xs.datatypes
Interface ByteList
public interface ByteList
The ByteList
is an immutable ordered collection of
byte
.
$Id: ByteList.java 447250 2006-09-18 05:27:17Z mrglavas $ boolean | contains(byte item) - Checks if the
byte item is a
member of this list.
|
int | getLength() - The number of
byte s in the list.
|
byte | item(int index) - Returns the
index th item in the collection.
|
contains
public boolean contains(byte item)
Checks if the byte
item
is a
member of this list.
item
- byte
whose presence in this list
is to be tested.
- True if this list contains the
byte
item
.
getLength
public int getLength()
The number of byte
s in the list. The range of
valid child object indices is 0 to length-1
inclusive.
item
public byte item(int index)
throws XSException
Returns the index
th item in the collection. The index
starts at 0.
index
- index into the collection.
- The
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 or less than zero.
Copyright © 1999-2007 The Apache Software Foundation. All Rights Reserved.