org.apache.xerces.xs.datatypes
Interface ObjectList
public interface ObjectList
The ObjectList
is an immutable ordered collection of
Object
.
$Id: ObjectList.java 447250 2006-09-18 05:27:17Z mrglavas $ boolean | contains(Object item) - Checks if the
Object item is a
member of this list.
|
int | getLength() - The number of
Object s in the list.
|
Object | item(int index) - Returns the
index th item in the collection or
null if index is greater than or equal to
the number of objects in the list.
|
contains
public boolean contains(Object item)
Checks if the Object
item
is a
member of this list.
item
- Object
whose presence in this list
is to be tested.
- True if this list contains the
Object
item
.
getLength
public int getLength()
The number of Object
s in the list. The range of
valid child object indices is 0 to length-1
inclusive.
item
public Object item(int index)
Returns the index
th item in the collection or
null
if index
is greater than or equal to
the number of objects in the list. The index starts at 0.
index
- index into the collection.
- The
Object
at the index
th
position in the ObjectList
, or null
if
the index specified is not valid - greater than or equal to the
number of items in the list or less than zero.
Copyright B) 1999-2006 The Apache Software Foundation. All Rights Reserved.