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
static
<E> ImmutableList<E>
ImmutableList.copyOf(java.lang.Iterable<? extends E> elements)
          Returns an immutable list containing the given elements, in order.
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.
abstract  ImmutableList<E> ImmutableList.subList(int fromIndex, int toIndex)
          Returns an immutable list of the elements between the specified fromIndex, inclusive, and toIndex, exclusive.
 



Copyright © 2008 Google. All Rights Reserved.