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

Uses of ImmutableSet in com.google.common.collect
 

Subclasses of ImmutableSet in com.google.common.collect
 class ImmutableSortedSet<E>
          An immutable SortedSet that stores its elements in a sorted array.
 

Methods in com.google.common.collect that return ImmutableSet
 ImmutableSet<E> ImmutableSet.Builder.build()
          Returns a newly-created ImmutableSet based on the contents of the Builder.
static
<E> ImmutableSet<E>
ImmutableSet.copyOf(E[] elements)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.copyOf(java.lang.Iterable<? extends E> elements)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.copyOf(java.util.Iterator<? extends E> elements)
          Returns an immutable set containing the given elements, in order.
 ImmutableSet<java.util.Map.Entry<K,V>> ImmutableSetMultimap.entries()
          Returns an immutable collection of all key-value pairs in the multimap.
 ImmutableSet<java.util.Map.Entry<K,V>> ImmutableSortedMap.entrySet()
          Returns an immutable set of the mappings in this map, sorted by the key ordering.
abstract  ImmutableSet<java.util.Map.Entry<K,V>> ImmutableMap.entrySet()
          Returns an immutable set of the mappings in this map.
 ImmutableSet<java.util.Map.Entry<K,V>> ImmutableBiMap.entrySet()
           
 ImmutableSet<V> ImmutableSetMultimap.get(K key)
          Returns an immutable set of the values for the given key.
 ImmutableSet<E> Sets.SetView.immutableCopy()
          Returns an immutable copy of the current contents of this set view.
static
<E extends java.lang.Enum<E>>
ImmutableSet<E>
Sets.immutableEnumSet(E anElement, E... otherElements)
          Returns an immutable set instance containing the given enum elements.
static
<E extends java.lang.Enum<E>>
ImmutableSet<E>
Sets.immutableEnumSet(java.lang.Iterable<E> elements)
          Returns an immutable set instance containing the given enum elements.
 ImmutableSet<K> ImmutableMultimap.keySet()
          Returns an immutable set of the distinct keys in this multimap.
abstract  ImmutableSet<K> ImmutableMap.keySet()
          Returns an immutable set of the keys in this map.
 ImmutableSet<K> ImmutableBiMap.keySet()
           
static
<E> ImmutableSet<E>
ImmutableSet.of()
          Returns the empty immutable set.
static
<E> ImmutableSet<E>
ImmutableSet.of(E element)
          Returns an immutable set containing a single element.
static
<E> ImmutableSet<E>
ImmutableSet.of(E[] elements)
          Deprecated. use copyOf(Object[]).
static
<E> ImmutableSet<E>
ImmutableSet.of(E e1, E e2)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.of(E e1, E e2, E e3)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.of(E e1, E e2, E e3, E e4)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.of(E e1, E e2, E e3, E e4, E e5)
          Returns an immutable set containing the given elements, in order.
static
<E> ImmutableSet<E>
ImmutableSet.of(E e1, E e2, E e3, E e4, E e5, E e6, E... others)
          Returns an immutable set containing the given elements, in order.
 ImmutableSet<V> ImmutableSetMultimap.removeAll(java.lang.Object key)
          Guaranteed to throw an exception and leave the multimap unmodified.
 ImmutableSet<V> ImmutableSetMultimap.replaceValues(K key, java.lang.Iterable<? extends V> values)
          Guaranteed to throw an exception and leave the multimap unmodified.
 ImmutableSet<V> ImmutableBiMap.values()
          Returns an immutable set of the values in this map.
 



Copyright © 2010 Google. All Rights Reserved.