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

Uses of ImmutableCollection in com.google.common.collect
 

Subclasses of ImmutableCollection in com.google.common.collect
 class ImmutableList<E>
          A high-performance, immutable, random-access List implementation.
 class ImmutableMultiset<E>
          An immutable hash-based multiset.
 class ImmutableSet<E>
          A high-performance, immutable Set with reliable, user-specified iteration order.
 class ImmutableSortedSet<E>
          An immutable SortedSet that stores its elements in a sorted array.
 

Methods in com.google.common.collect that return ImmutableCollection
 ImmutableCollection<java.util.Map.Entry<K,V>> ImmutableMultimap.entries()
          Returns an immutable collection of all key-value pairs in the multimap.
abstract  ImmutableCollection<V> ImmutableMultimap.get(K key)
          Returns an immutable collection of the values for the given key.
 ImmutableCollection<V> ImmutableMultimap.removeAll(java.lang.Object key)
          Guaranteed to throw an exception and leave the multimap unmodified.
 ImmutableCollection<V> ImmutableMultimap.replaceValues(K key, java.lang.Iterable<? extends V> values)
          Guaranteed to throw an exception and leave the multimap unmodified.
 ImmutableCollection<V> ImmutableSortedMap.values()
          Returns an immutable collection of the values in this map, sorted by the ordering of the corresponding keys.
 ImmutableCollection<V> ImmutableMultimap.values()
          Returns an immutable collection of the values in this multimap.
abstract  ImmutableCollection<V> ImmutableMap.values()
          Returns an immutable collection of the values in this map.
 



Copyright © 2010 Google. All Rights Reserved.