Class ObjectListImpl

  • All Implemented Interfaces:
    java.lang.Iterable<java.lang.Object>, java.util.Collection<java.lang.Object>, java.util.List<java.lang.Object>, ObjectList

    public final class ObjectListImpl
    extends java.util.AbstractList<java.lang.Object>
    implements ObjectList
    Contains a list of Objects. @xerces.internal
    Version:
    $Id: ObjectListImpl.java 789785 2009-06-30 15:10:26Z knoaman $
    • 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
      boolean contains​(java.lang.Object item)
      Checks if the Object item is a member of this list.
      java.lang.Object get​(int index)  
      int getLength()
      The number of Objects in the list.
      java.lang.Object item​(int index)
      Returns the indexth item in the collection or null if index is greater than or equal to the number of objects in the list.
      int size()  
      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, set, subList
      • Methods inherited from class java.util.AbstractCollection

        addAll, containsAll, isEmpty, remove, removeAll, retainAll, toString
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        add, add, addAll, addAll, clear, containsAll, equals, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, sort, spliterator, subList
    • Field Detail

      • EMPTY_LIST

        public static final ObjectListImpl EMPTY_LIST
        An immutable empty list.
    • Constructor Detail

      • ObjectListImpl

        public ObjectListImpl​(java.lang.Object[] array,
                              int length)
    • Method Detail

      • getLength

        public int getLength()
        Description copied from interface: ObjectList
        The number of Objects in the list. The range of valid child object indices is 0 to length-1 inclusive.
        Specified by:
        getLength in interface ObjectList
      • contains

        public boolean contains​(java.lang.Object item)
        Description copied from interface: ObjectList
        Checks if the Object item is a member of this list.
        Specified by:
        contains in interface java.util.Collection<java.lang.Object>
        Specified by:
        contains in interface java.util.List<java.lang.Object>
        Specified by:
        contains in interface ObjectList
        Overrides:
        contains in class java.util.AbstractCollection<java.lang.Object>
        Parameters:
        item - Object whose presence in this list is to be tested.
        Returns:
        True if this list contains the Object item.
      • item

        public java.lang.Object item​(int index)
        Description copied from interface: ObjectList
        Returns the indexth 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.
        Specified by:
        item in interface ObjectList
        Parameters:
        index - index into the collection.
        Returns:
        The Object at the indexth 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.
      • get

        public java.lang.Object get​(int index)
        Specified by:
        get in interface java.util.List<java.lang.Object>
        Specified by:
        get in class java.util.AbstractList<java.lang.Object>
      • size

        public int size()
        Specified by:
        size in interface java.util.Collection<java.lang.Object>
        Specified by:
        size in interface java.util.List<java.lang.Object>
        Specified by:
        size in class java.util.AbstractCollection<java.lang.Object>
      • toArray

        public java.lang.Object[] toArray()
        Specified by:
        toArray in interface java.util.Collection<java.lang.Object>
        Specified by:
        toArray in interface java.util.List<java.lang.Object>
        Overrides:
        toArray in class java.util.AbstractCollection<java.lang.Object>
      • toArray

        public java.lang.Object[] toArray​(java.lang.Object[] a)
        Specified by:
        toArray in interface java.util.Collection<java.lang.Object>
        Specified by:
        toArray in interface java.util.List<java.lang.Object>
        Overrides:
        toArray in class java.util.AbstractCollection<java.lang.Object>