Class ObjectLists.UnmodifiableRandomAccessList<K>

  • All Implemented Interfaces:
    ObjectCollection<K>, ObjectIterable<K>, ObjectList<K>, java.io.Serializable, java.lang.Comparable<java.util.List<? extends K>>, java.lang.Iterable<K>, java.util.Collection<K>, java.util.List<K>, java.util.RandomAccess
    Enclosing class:
    ObjectLists

    public static class ObjectLists.UnmodifiableRandomAccessList<K>
    extends ObjectLists.UnmodifiableList<K>
    implements java.util.RandomAccess, java.io.Serializable
    An unmodifiable wrapper class for random-access lists.
    See Also:
    Serialized Form
    • Method Detail

      • subList

        public ObjectList<K> subList​(int from,
                                     int to)
        Description copied from interface: ObjectList
        Returns a type-specific view of the portion of this list from the index from, inclusive, to the index to, exclusive.
        Specified by:
        subList in interface java.util.List<K>
        Specified by:
        subList in interface ObjectList<K>
        Overrides:
        subList in class ObjectLists.UnmodifiableList<K>
        See Also:
        List.subList(int,int)
      • add

        public boolean add​(K k)
        Specified by:
        add in interface java.util.Collection<K>
      • remove

        public boolean remove​(java.lang.Object k)
        Specified by:
        remove in interface java.util.Collection<K>
      • size

        public int size()
        Specified by:
        size in interface java.util.Collection<K>
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface java.util.Collection<K>
      • contains

        public boolean contains​(java.lang.Object o)
        Specified by:
        contains in interface java.util.Collection<K>
      • spliterator

        public ObjectSpliterator<K> spliterator()
        Description copied from interface: ObjectCollection
        Returns a type-specific spliterator on the elements of this collection.

        See Collection.spliterator() for more documentation on the requirements of the returned spliterator.

        Specified by:
        spliterator in interface java.util.Collection<K>
        Specified by:
        spliterator in interface java.lang.Iterable<K>
        Specified by:
        spliterator in interface ObjectCollection<K>
        Specified by:
        spliterator in interface ObjectIterable<K>
        Returns:
        a type-specific spliterator on the elements of this collection.
      • stream

        public java.util.stream.Stream<K> stream()
        Specified by:
        stream in interface java.util.Collection<K>
      • parallelStream

        public java.util.stream.Stream<K> parallelStream()
        Specified by:
        parallelStream in interface java.util.Collection<K>
      • clear

        public void clear()
        Specified by:
        clear in interface java.util.Collection<K>
      • toArray

        public <T> T[] toArray​(T[] a)
        Specified by:
        toArray in interface java.util.Collection<K>
      • toArray

        public java.lang.Object[] toArray()
        Specified by:
        toArray in interface java.util.Collection<K>
      • forEach

        public void forEach​(java.util.function.Consumer<? super K> action)
        Specified by:
        forEach in interface java.lang.Iterable<K>
      • containsAll

        public boolean containsAll​(java.util.Collection<?> c)
        Specified by:
        containsAll in interface java.util.Collection<K>
      • addAll

        public boolean addAll​(java.util.Collection<? extends K> c)
        Specified by:
        addAll in interface java.util.Collection<K>
      • removeAll

        public boolean removeAll​(java.util.Collection<?> c)
        Specified by:
        removeAll in interface java.util.Collection<K>
      • retainAll

        public boolean retainAll​(java.util.Collection<?> c)
        Specified by:
        retainAll in interface java.util.Collection<K>
      • removeIf

        public boolean removeIf​(java.util.function.Predicate<? super K> filter)
        Specified by:
        removeIf in interface java.util.Collection<K>
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object