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

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

Uses of ImmutableSet in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableSet
static
<E> ImmutableSet<E>
ImmutableSet.copyOf(java.lang.Iterable<? extends E> elements)
          Returns an immutable set containing the given elements, in order.
abstract  ImmutableSet<java.util.Map.Entry<K,V>> ImmutableMap.entrySet()
          Returns an immutable set of the mappings in this map.
 ImmutableSet<E> Sets.SetView.immutableCopy()
          Returns an immutable copy of the current contents of this set view.
abstract  ImmutableSet<K> ImmutableMap.keySet()
          Returns an immutable set of the keys in this map.
static
<E> ImmutableSet<E>
ImmutableSet.of()
          Returns the empty immutable set.
static
<E> ImmutableSet<E>
ImmutableSet.of(E... elements)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.of(E element)
          Returns an immutable set containing a single element.
 



Copyright © 2008 Google. All Rights Reserved.