| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ImmutableSortedMap.Builder | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. | 
| Uses of ImmutableSortedMap.Builder in com.google.common.collect | 
|---|
| Methods in com.google.common.collect that return ImmutableSortedMap.Builder | ||
|---|---|---|
| static
 | ImmutableSortedMap.naturalOrder()Returns a builder that creates immutable sorted maps whose keys are ordered by their natural ordering. | |
| static
 | ImmutableSortedMap.orderedBy(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 keywithvaluein the built map. | |
|  ImmutableSortedMap.Builder<K,V> | ImmutableSortedMap.Builder.put(Map.Entry<? extends K,? extends V> entry)Adds the given entryto the map, making it immutable if
 necessary. | |
|  ImmutableSortedMap.Builder<K,V> | ImmutableSortedMap.Builder.putAll(Map<? extends K,? extends V> map)Associates all of the given map's keys and values in the built map. | |
| static
 | ImmutableSortedMap.reverseOrder()Returns a builder that creates immutable sorted maps whose keys are ordered by the reverse of their natural ordering. | |
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||