Uses of Interface
com.google.common.collect.SortedSetMultimap

Uses of SortedSetMultimap in com.google.common.collect
 

Classes in com.google.common.collect that implement SortedSetMultimap
 class ForwardingSortedSetMultimap<K,V>
          A sorted set multimap which forwards all its method calls to another sorted set multimap.
 class TreeMultimap<K,V>
          Implementation of Multimap whose keys and values are ordered by their natural ordering or by supplied comparators.
 

Methods in com.google.common.collect that return SortedSetMultimap
static
<K,V> SortedSetMultimap<K,V>
MapConstraints.constrainedSortedSetMultimap(SortedSetMultimap<K,V> multimap, MapConstraint<? super K,? super V> constraint)
          Returns a constrained view of the specified sorted-set multimap, using the specified constraint.
protected abstract  SortedSetMultimap<K,V> ForwardingSortedSetMultimap.delegate()
           
static
<K,V> SortedSetMultimap<K,V>
Multimaps.newSortedSetMultimap(java.util.Map<K,java.util.Collection<V>> map, Supplier<? extends java.util.SortedSet<V>> factory)
          Creates a new SortedSetMultimap that uses the provided map and factory.
static
<K,V> SortedSetMultimap<K,V>
Multimaps.synchronizedSortedSetMultimap(SortedSetMultimap<K,V> multimap)
          Returns a synchronized (thread-safe) SortedSetMultimap backed by the specified multimap.
static
<K,V> SortedSetMultimap<K,V>
Multimaps.unmodifiableSortedSetMultimap(SortedSetMultimap<K,V> delegate)
          Returns an unmodifiable view of the specified SortedSetMultimap.
 

Methods in com.google.common.collect with parameters of type SortedSetMultimap
static
<K,V> SortedSetMultimap<K,V>
MapConstraints.constrainedSortedSetMultimap(SortedSetMultimap<K,V> multimap, MapConstraint<? super K,? super V> constraint)
          Returns a constrained view of the specified sorted-set multimap, using the specified constraint.
static
<K,V> SortedSetMultimap<K,V>
Multimaps.synchronizedSortedSetMultimap(SortedSetMultimap<K,V> multimap)
          Returns a synchronized (thread-safe) SortedSetMultimap backed by the specified multimap.
static
<K,V> SortedSetMultimap<K,V>
Multimaps.unmodifiableSortedSetMultimap(SortedSetMultimap<K,V> delegate)
          Returns an unmodifiable view of the specified SortedSetMultimap.
 



Copyright © 2010 Google. All Rights Reserved.