| 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ImmutableSortedMap | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. | 
| Uses of ImmutableSortedMap in com.google.common.collect | 
|---|
| Methods in com.google.common.collect that return ImmutableSortedMap | ||
|---|---|---|
 ImmutableSortedMap<K,V> | 
ImmutableSortedMap.Builder.build()
Returns a newly-created immutable sorted map.  | 
|
static
 | 
ImmutableSortedMap.copyOf(Map<? extends K,? extends V> map)
Returns an immutable map containing the same entries as map, sorted
 by the natural ordering of the keys. | 
|
static
 | 
ImmutableSortedMap.copyOf(Map<? extends K,? extends V> map,
             Comparator<? super K> comparator)
Returns an immutable map containing the same entries as map, with
 keys sorted by the provided comparator. | 
|
static
 | 
ImmutableSortedMap.copyOfSorted(SortedMap<K,? extends V> map)
Returns an immutable map containing the same entries as the provided sorted map, with the same ordering.  | 
|
 ImmutableSortedMap<K,V> | 
ImmutableSortedMap.headMap(K toKey)
This method returns a ImmutableSortedMap, consisting of the entries
 whose keys are less than toKey. | 
|
static
 | 
ImmutableSortedMap.of()
Returns the empty sorted map.  | 
|
static
 | 
ImmutableSortedMap.of(K k1,
     V v1)
Returns an immutable map containing a single entry.  | 
|
static
 | 
ImmutableSortedMap.of(K k1,
     V v1,
     K k2,
     V v2)
Returns an immutable sorted map containing the given entries, sorted by the natural ordering of their keys.  | 
|
static
 | 
ImmutableSortedMap.of(K k1,
     V v1,
     K k2,
     V v2,
     K k3,
     V v3)
Returns an immutable sorted map containing the given entries, sorted by the natural ordering of their keys.  | 
|
static
 | 
ImmutableSortedMap.of(K k1,
     V v1,
     K k2,
     V v2,
     K k3,
     V v3,
     K k4,
     V v4)
Returns an immutable sorted map containing the given entries, sorted by the natural ordering of their keys.  | 
|
static
 | 
ImmutableSortedMap.of(K k1,
     V v1,
     K k2,
     V v2,
     K k3,
     V v3,
     K k4,
     V v4,
     K k5,
     V v5)
Returns an immutable sorted map containing the given entries, sorted by the natural ordering of their keys.  | 
|
 ImmutableSortedMap<K,V> | 
ImmutableSortedMap.subMap(K fromKey,
             K toKey)
This method returns a ImmutableSortedMap, consisting of the entries
 whose keys ranges from fromKey, inclusive, to toKey,
 exclusive. | 
|
 ImmutableSortedMap<K,V> | 
ImmutableSortedMap.tailMap(K fromKey)
This method returns a ImmutableSortedMap, consisting of the entries
 whose keys are greater than or equals to fromKey. | 
|
  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||