Uses of Class
com.google.common.collect.ImmutableSortedMap.Builder

Uses of ImmutableSortedMap.Builder in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableSortedMap.Builder
static
<K extends java.lang.Comparable<K>,V>
ImmutableSortedMap.Builder<K,V>
ImmutableSortedMap.naturalOrder()
          Returns a builder that creates immutable sorted maps whose keys are ordered by their natural ordering.
static
<K,V> ImmutableSortedMap.Builder<K,V>
ImmutableSortedMap.orderedBy(java.util.Comparator<K> comparator)
          Returns a builder that creates immutable sorted maps with an explicit comparator.
 ImmutableSortedMap.Builder<K,V> ImmutableSortedMap.Builder.put(K key, V value)
          Associates key with value in the built map.
 ImmutableSortedMap.Builder<K,V> ImmutableSortedMap.Builder.putAll(java.util.Map<? extends K,? extends V> map)
          Associates all of the given map's keys and values in the built map.
static
<K extends java.lang.Comparable<K>,V>
ImmutableSortedMap.Builder<K,V>
ImmutableSortedMap.reverseOrder()
          Returns a builder that creates immutable sorted maps whose keys are ordered by the reverse of their natural ordering.
 



Copyright © 2010 Google. All Rights Reserved.