public abstract class ImmutableList<E> extends ImmutableCollection<E> implements List<E>, RandomAccess
List implementation.
Does not permit null elements.
Unlike Collections.unmodifiableList(java.util.List<? extends T>), which is a view of a
separate collection that can still change, an instance of ImmutableList contains its own private data and will never change.
ImmutableList is convenient for public static final lists
("constant lists") and also lets you easily make a "defensive copy" of a list
provided to your class by a caller.
Note: Although this class is not final, it cannot be subclassed as it has no public or protected constructors. Thus, instances of this type are guaranteed to be immutable.
ImmutableMap,
ImmutableSet,
Serialized Form| Modifier and Type | Class and Description |
|---|---|
static class |
ImmutableList.Builder<E>
A builder for creating immutable list instances, especially
public static final lists ("constant lists"). |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
E element)
Guaranteed to throw an exception and leave the list unmodified.
|
boolean |
addAll(int index,
Collection<? extends E> newElements)
Guaranteed to throw an exception and leave the list unmodified.
|
static <E> ImmutableList.Builder<E> |
builder()
Returns a new builder.
|
static <E> ImmutableList<E> |
copyOf(Iterable<? extends E> elements)
Returns an immutable list containing the given elements, in order.
|
static <E> ImmutableList<E> |
copyOf(Iterator<? extends E> elements)
Returns an immutable list containing the given elements, in order.
|
abstract int |
indexOf(Object object) |
abstract UnmodifiableIterator<E> |
iterator()
Returns an unmodifiable iterator across the elements in this collection.
|
abstract int |
lastIndexOf(Object object) |
static <E> ImmutableList<E> |
of()
Returns the empty immutable list.
|
static <E> ImmutableList<E> |
of(E... elements)
Returns an immutable list containing the given elements, in order.
|
static <E> ImmutableList<E> |
of(E element)
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.
|
E |
remove(int index)
Guaranteed to throw an exception and leave the list unmodified.
|
E |
set(int index,
E element)
Guaranteed to throw an exception and leave the list unmodified.
|
abstract ImmutableList<E> |
subList(int fromIndex,
int toIndex)
Returns an immutable list of the elements between the specified
fromIndex, inclusive, and toIndex, exclusive. |
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringpublic static <E> ImmutableList<E> of()
Collections.emptyList(), and is preferable mainly for consistency
and maintainability of your code.public static <E> ImmutableList<E> of(E element)
Collections.singleton(T), but will not
accept a null element. It is preferable mainly for consistency and
maintainability of your code.NullPointerException - if element is nullpublic static <E> ImmutableList<E> of(E e1, E e2)
NullPointerException - if any element is nullpublic static <E> ImmutableList<E> of(E e1, E e2, E e3)
NullPointerException - if any element is nullpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4)
NullPointerException - if any element is nullpublic static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5)
NullPointerException - if any element is nullpublic static <E> ImmutableList<E> of(E... elements)
NullPointerException - if any of elements is nullpublic static <E> ImmutableList<E> copyOf(Iterable<? extends E> elements)
elements at most once. Note that if list is a List<String>, then ImmutableList.copyOf(list)
returns an ImmutableList<String> containing each of the strings
in list, while ImmutableList.of(list)} returns an ImmutableList<List<String>> containing one element (the given list
itself).
Note: Despite what the method name suggests, if elements
is an ImmutableList, no copy will actually be performed, and the
given list itself will be returned.
NullPointerException - if any of elements is nullpublic static <E> ImmutableList<E> copyOf(Iterator<? extends E> elements)
NullPointerException - if any of elements is nullpublic abstract UnmodifiableIterator<E> iterator()
ImmutableCollectionpublic abstract int lastIndexOf(@Nullable Object object)
lastIndexOf in interface List<E>public abstract ImmutableList<E> subList(int fromIndex, int toIndex)
fromIndex, inclusive, and toIndex, exclusive. (If fromIndex and toIndex are equal, the empty immutable list is
returned.)public final boolean addAll(int index,
Collection<? extends E> newElements)
addAll in interface List<E>UnsupportedOperationException - alwayspublic final E set(int index, E element)
set in interface List<E>UnsupportedOperationException - alwayspublic final void add(int index,
E element)
add in interface List<E>UnsupportedOperationException - alwayspublic final E remove(int index)
remove in interface List<E>UnsupportedOperationException - alwayspublic static <E> ImmutableList.Builder<E> builder()
ImmutableList.Builder constructor.Copyright © 2006-2012 Google, Inc.. All Rights Reserved.