Package org.apache.xerces.impl.xs.util
Class ObjectListImpl
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList
-
- org.apache.xerces.impl.xs.util.ObjectListImpl
-
- All Implemented Interfaces:
java.lang.Iterable,java.util.Collection,java.util.List,org.apache.xerces.xs.datatypes.ObjectList
public final class ObjectListImpl extends java.util.AbstractList implements org.apache.xerces.xs.datatypes.ObjectListContains a list of Objects.INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Version:
- $Id: ObjectListImpl.java 789785 2009-06-30 15:10:26Z knoaman $
-
-
Field Summary
Fields Modifier and Type Field Description static ObjectListImplEMPTY_LISTAn immutable empty list.
-
Constructor Summary
Constructors Constructor Description ObjectListImpl(java.lang.Object[] array, int length)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(java.lang.Object item)Checks if theObjectitemis a member of this list.java.lang.Objectget(int index)intgetLength()The number ofObjects in the list.java.lang.Objectitem(int index)Returns theindexth item in the collection ornullifindexis greater than or equal to the number of objects in the list.intsize()java.lang.Object[]toArray()java.lang.Object[]toArray(java.lang.Object[] a)-
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, isEmpty, remove, removeAll, retainAll, toString
-
-
-
-
Field Detail
-
EMPTY_LIST
public static final ObjectListImpl EMPTY_LIST
An immutable empty list.
-
-
Method Detail
-
getLength
public int getLength()
Description copied from interface:org.apache.xerces.xs.datatypes.ObjectListThe number ofObjects in the list. The range of valid child object indices is 0 tolength-1inclusive.- Specified by:
getLengthin interfaceorg.apache.xerces.xs.datatypes.ObjectList
-
contains
public boolean contains(java.lang.Object item)
Description copied from interface:org.apache.xerces.xs.datatypes.ObjectListChecks if theObjectitemis a member of this list.- Specified by:
containsin interfacejava.util.Collection- Specified by:
containsin interfacejava.util.List- Specified by:
containsin interfaceorg.apache.xerces.xs.datatypes.ObjectList- Overrides:
containsin classjava.util.AbstractCollection- Parameters:
item-Objectwhose presence in this list is to be tested.- Returns:
- True if this list contains the
Objectitem.
-
item
public java.lang.Object item(int index)
Description copied from interface:org.apache.xerces.xs.datatypes.ObjectListReturns theindexth item in the collection ornullifindexis greater than or equal to the number of objects in the list. The index starts at 0.- Specified by:
itemin interfaceorg.apache.xerces.xs.datatypes.ObjectList- Parameters:
index- index into the collection.- Returns:
- The
Objectat theindexth position in theObjectList, ornullif the index specified is not valid - greater than or equal to the number of items in the list or less than zero.
-
get
public java.lang.Object get(int index)
- Specified by:
getin interfacejava.util.List- Specified by:
getin classjava.util.AbstractList
-
size
public int size()
- Specified by:
sizein interfacejava.util.Collection- Specified by:
sizein interfacejava.util.List- Specified by:
sizein classjava.util.AbstractCollection
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArrayin interfacejava.util.Collection- Specified by:
toArrayin interfacejava.util.List- Overrides:
toArrayin classjava.util.AbstractCollection
-
toArray
public java.lang.Object[] toArray(java.lang.Object[] a)
- Specified by:
toArrayin interfacejava.util.Collection- Specified by:
toArrayin interfacejava.util.List- Overrides:
toArrayin classjava.util.AbstractCollection
-
-