Class ImmutableList<E>
- java.lang.Object
- 
- java.util.AbstractCollection<E>
- 
- com.google.common.collect.ImmutableCollection<E>
- 
- com.google.common.collect.ImmutableList<E>
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Iterable<E>,- java.util.Collection<E>,- java.util.List<E>,- java.util.RandomAccess
 
 @GwtCompatible(serializable=true, emulated=true) public abstract class ImmutableList<E> extends ImmutableCollection<E> implements java.util.List<E>, java.util.RandomAccess AListwhose contents will never change, with many other important properties detailed atImmutableCollection.See the Guava User Guide article on immutable collections. - Since:
- 2.0
- Author:
- Kevin Bourrillion
- See Also:
- ImmutableMap,- ImmutableSet, Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classImmutableList.Builder<E>A builder for creating immutable list instances, especiallypublic static finallists ("constant lists").
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(int index, E element)Deprecated.Unsupported operation.booleanaddAll(int index, java.util.Collection<? extends E> newElements)Deprecated.Unsupported operation.ImmutableList<E>asList()Deprecated.There is no reason to use this; it always returnsthis.static <E> ImmutableList.Builder<E>builder()Returns a new builder.static <E> ImmutableList.Builder<E>builderWithExpectedSize(int expectedSize)Returns a new builder, expecting the specified number of elements to be added.booleancontains(java.lang.Object object)static <E> ImmutableList<E>copyOf(E[] elements)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>copyOf(java.lang.Iterable<? extends E> elements)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>copyOf(java.util.Collection<? extends E> elements)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>copyOf(java.util.Iterator<? extends E> elements)Returns an immutable list containing the given elements, in order.booleanequals(java.lang.Object obj)inthashCode()intindexOf(java.lang.Object object)UnmodifiableIterator<E>iterator()Returns an unmodifiable iterator across the elements in this collection.intlastIndexOf(java.lang.Object object)UnmodifiableListIterator<E>listIterator()UnmodifiableListIterator<E>listIterator(int index)static <E> ImmutableList<E>of()Returns the empty immutable list.static <E> ImmutableList<E>of(E e1)Returns an immutable list containing a single element.static <E> ImmutableList<E>of(E e1, E e2)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11)Returns an immutable list containing the given elements, in order.static <E> ImmutableList<E>of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11, E e12, E... others)Returns an immutable list containing the given elements, in order.Eremove(int index)Deprecated.Unsupported operation.ImmutableList<E>reverse()Returns a view of this immutable list in reverse order.Eset(int index, E element)Deprecated.Unsupported operation.static <E extends java.lang.Comparable<? super E>>
 ImmutableList<E>sortedCopyOf(java.lang.Iterable<? extends E> elements)Returns an immutable list containing the given elements, sorted according to their natural order.static <E> ImmutableList<E>sortedCopyOf(java.util.Comparator<? super E> comparator, java.lang.Iterable<? extends E> elements)Returns an immutable list containing the given elements, in sorted order relative to the specified comparator.ImmutableList<E>subList(int fromIndex, int toIndex)Returns an immutable list of the elements between the specifiedfromIndex, inclusive, andtoIndex, exclusive.static <E> java.util.stream.Collector<E,?,ImmutableList<E>>toImmutableList()Returns aCollectorthat accumulates the input elements into a newImmutableList, in encounter order.- 
Methods inherited from class com.google.common.collect.ImmutableCollectionadd, addAll, clear, remove, removeAll, retainAll, spliterator, toArray, toArray
 
- 
 
- 
- 
- 
Method Detail- 
toImmutableListpublic static <E> java.util.stream.Collector<E,?,ImmutableList<E>> toImmutableList() Returns aCollectorthat accumulates the input elements into a newImmutableList, in encounter order.- Since:
- 33.2.0 (available since 21.0 in guava-jre)
 
 - 
ofpublic static <E> ImmutableList<E> of() Returns the empty immutable list. This list behaves and performs comparably toCollections.emptyList(), and is preferable mainly for consistency and maintainability of your code.Performance note: the instance returned is a singleton. 
 - 
ofpublic static <E> ImmutableList<E> of(E e1) Returns an immutable list containing a single element. This list behaves and performs comparably toCollections.singletonList(T), but will not accept a null element. It is preferable mainly for consistency and maintainability of your code.- Throws:
- java.lang.NullPointerException- if the element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
ofpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if any element is null
 
 - 
of@SafeVarargs public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11, E e12, E... others) Returns an immutable list containing the given elements, in order.The array othersmust not be longer thanInteger.MAX_VALUE - 12.- Throws:
- java.lang.NullPointerException- if any element is null
- Since:
- 3.0 (source-compatible since 2.0)
 
 - 
copyOfpublic static <E> ImmutableList<E> copyOf(java.lang.Iterable<? extends E> elements) Returns an immutable list containing the given elements, in order. Ifelementsis aCollection, this method behaves exactly ascopyOf(Collection); otherwise, it behaves exactly ascopyOf(elements.iterator().- Throws:
- java.lang.NullPointerException- if- elementscontains a null element
 
 - 
copyOfpublic static <E> ImmutableList<E> copyOf(java.util.Collection<? extends E> elements) Returns an immutable list containing the given elements, in order.Despite the method name, this method attempts to avoid actually copying the data when it is safe to do so. The exact circumstances under which a copy will or will not be performed are undocumented and subject to change. Note that if listis aList<String>, thenImmutableList.copyOf(list)returns anImmutableList<String>containing each of the strings inlist, whileImmutableList.of(list)returns anImmutableList<List<String>>containing one element (the given list itself).This method is safe to use even when elementsis a synchronized or concurrent collection that is currently being modified by another thread.- Throws:
- java.lang.NullPointerException- if- elementscontains a null element
 
 - 
copyOfpublic static <E> ImmutableList<E> copyOf(java.util.Iterator<? extends E> elements) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if- elementscontains a null element
 
 - 
copyOfpublic static <E> ImmutableList<E> copyOf(E[] elements) Returns an immutable list containing the given elements, in order.- Throws:
- java.lang.NullPointerException- if- elementscontains a null element
- Since:
- 3.0
 
 - 
sortedCopyOfpublic static <E extends java.lang.Comparable<? super E>> ImmutableList<E> sortedCopyOf(java.lang.Iterable<? extends E> elements) Returns an immutable list containing the given elements, sorted according to their natural order. The sorting algorithm used is stable, so elements that compare as equal will stay in the order in which they appear in the input.If your data has no duplicates, or you wish to deduplicate elements, use ImmutableSortedSet.copyOf(elements); if you want aListyou can use itsasList()view.Java 8+ users: If you want to convert a Streamto a sortedImmutableList, usestream.sorted().collect(toImmutableList()).- Throws:
- java.lang.NullPointerException- if any element in the input is null
- Since:
- 21.0
 
 - 
sortedCopyOfpublic static <E> ImmutableList<E> sortedCopyOf(java.util.Comparator<? super E> comparator, java.lang.Iterable<? extends E> elements) Returns an immutable list containing the given elements, in sorted order relative to the specified comparator. The sorting algorithm used is stable, so elements that compare as equal will stay in the order in which they appear in the input.If your data has no duplicates, or you wish to deduplicate elements, use ImmutableSortedSet.copyOf(comparator, elements); if you want aListyou can use itsasList()view.Java 8+ users: If you want to convert a Streamto a sortedImmutableList, usestream.sorted(comparator).collect(toImmutableList()).- Throws:
- java.lang.NullPointerException- if any element in the input is null
- Since:
- 21.0
 
 - 
iteratorpublic UnmodifiableIterator<E> iterator() Description copied from class:ImmutableCollectionReturns an unmodifiable iterator across the elements in this collection.
 - 
listIteratorpublic UnmodifiableListIterator<E> listIterator() - Specified by:
- listIteratorin interface- java.util.List<E>
 
 - 
listIteratorpublic UnmodifiableListIterator<E> listIterator(int index) - Specified by:
- listIteratorin interface- java.util.List<E>
 
 - 
indexOfpublic int indexOf(@CheckForNull java.lang.Object object) - Specified by:
- indexOfin interface- java.util.List<E>
 
 - 
lastIndexOfpublic int lastIndexOf(@CheckForNull java.lang.Object object) - Specified by:
- lastIndexOfin interface- java.util.List<E>
 
 - 
containspublic boolean contains(@CheckForNull java.lang.Object object) - Specified by:
- containsin interface- java.util.Collection<E>
- Specified by:
- containsin interface- java.util.List<E>
- Specified by:
- containsin class- ImmutableCollection<E>
 
 - 
subListpublic ImmutableList<E> subList(int fromIndex, int toIndex) Returns an immutable list of the elements between the specifiedfromIndex, inclusive, andtoIndex, exclusive. (IffromIndexandtoIndexare equal, the empty immutable list is returned.)Note: in almost all circumstances, the returned ImmutableListretains a strong reference tothis, which may prevent the original list from being garbage collected. If you want the original list to be eligible for garbage collection, you should create and use a copy of the sub list (e.g.,ImmutableList.copyOf(originalList.subList(...))).- Specified by:
- subListin interface- java.util.List<E>
 
 - 
addAll@CanIgnoreReturnValue @Deprecated public final boolean addAll(int index, java.util.Collection<? extends E> newElements) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the list unmodified.- Specified by:
- addAllin interface- java.util.List<E>
- Throws:
- java.lang.UnsupportedOperationException- always
 
 - 
set@CanIgnoreReturnValue @Deprecated public final E set(int index, E element) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the list unmodified.- Specified by:
- setin interface- java.util.List<E>
- Throws:
- java.lang.UnsupportedOperationException- always
 
 - 
add@Deprecated public final void add(int index, E element) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the list unmodified.- Specified by:
- addin interface- java.util.List<E>
- Throws:
- java.lang.UnsupportedOperationException- always
 
 - 
remove@CanIgnoreReturnValue @Deprecated public final E remove(int index) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the list unmodified.- Specified by:
- removein interface- java.util.List<E>
- Throws:
- java.lang.UnsupportedOperationException- always
 
 - 
asList@InlineMe(replacement="this") @Deprecated public final ImmutableList<E> asList() Deprecated.There is no reason to use this; it always returnsthis.Returns this list instance.- Overrides:
- asListin class- ImmutableCollection<E>
- Since:
- 2.0
 
 - 
reversepublic ImmutableList<E> reverse() Returns a view of this immutable list in reverse order. For example,ImmutableList.of(1, 2, 3).reverse()is equivalent toImmutableList.of(3, 2, 1).- Returns:
- a view of this immutable list in reverse order
- Since:
- 7.0
 
 - 
equalspublic boolean equals(@CheckForNull java.lang.Object obj) 
 - 
hashCodepublic int hashCode() 
 - 
builderpublic static <E> ImmutableList.Builder<E> builder() Returns a new builder. The generated builder is equivalent to the builder created by theImmutableList.Builderconstructor.
 - 
builderWithExpectedSizepublic static <E> ImmutableList.Builder<E> builderWithExpectedSize(int expectedSize) Returns a new builder, expecting the specified number of elements to be added.If expectedSizeis exactly the number of elements added to the builder beforeImmutableList.Builder.build()is called, the builder is likely to perform better than an unsizedbuilder()would have.It is not specified if any performance benefits apply if expectedSizeis close to, but not exactly, the number of elements added to the builder.- Since:
- 23.1
 
 
- 
 
-