Uses of Class
com.google.common.collect.ImmutableList

Packages that use ImmutableList
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of ImmutableList in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableList
 ImmutableList<E> ImmutableList.asList()
          Returns this list instance.
 ImmutableList<E> ImmutableCollection.asList()
          Returns a list view of the collection.
 ImmutableList<E> ImmutableList.Builder.build()
          Returns a newly-created ImmutableList based on the contents of the Builder.
static
<E> ImmutableList<E>
ImmutableList.copyOf(Collection<? extends E> elements)
          Returns an immutable list containing the given elements, in order.
static
<E> ImmutableList<E>
ImmutableList.copyOf(Iterable<? extends E> elements)
          Returns an immutable list containing the given elements, in order.
static
<E> ImmutableList<E>
ImmutableList.copyOf(Iterator<? extends E> elements)
          Returns an immutable list containing the given elements, in order.
 ImmutableList<V> ImmutableListMultimap.get(K key)
          Returns an immutable list of the values for the given key.
static
<E> ImmutableList<E>
ImmutableList.of()
          Returns the empty immutable list.
static
<E> ImmutableList<E>
ImmutableList.of(E... elements)
          Returns an immutable list containing the given elements, in order.
static
<E> ImmutableList<E>
ImmutableList.of(E element)
          Returns an immutable list containing a single element.
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5, E e6)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
          Identical to of(Object[]).
static
<E> ImmutableList<E>
ImmutableList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11)
          Identical to of(Object[]).
 ImmutableList<V> ImmutableListMultimap.removeAll(Object key)
          Guaranteed to throw an exception and leave the multimap unmodified.
 ImmutableList<V> ImmutableListMultimap.replaceValues(K key, Iterable<? extends V> values)
          Guaranteed to throw an exception and leave the multimap unmodified.
abstract  ImmutableList<E> ImmutableList.subList(int fromIndex, int toIndex)
          Returns an immutable list of the elements between the specified fromIndex, inclusive, and toIndex, exclusive.