HomeSort by relevance Sort by last modified time
    Searched defs:ImmutableSortedMap (Results 1 - 5 of 5) sorted by null

  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedMap.java 47 * ImmutableSortedMap} contains its own data and will <i>never</i> change.
48 * {@code ImmutableSortedMap} is convenient for {@code public static final} maps
61 public class ImmutableSortedMap<K, V>
64 * TODO(kevinb): Confirm that ImmutableSortedMap is faster to construct and
74 private static final ImmutableSortedMap<Comparable, Object>
76 new ImmutableSortedMap<Comparable, Object>(
85 public static <K, V> ImmutableSortedMap<K, V> of() {
86 return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP;
90 private static <K, V> ImmutableSortedMap<K, V> emptyMap(
93 return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedMap.java 31 * GWT emulated version of {@link ImmutableSortedMap}. It's a thin wrapper
36 public class ImmutableSortedMap<K, V>
39 // TODO: Confirm that ImmutableSortedMap is faster to construct and uses less
49 private static final ImmutableSortedMap<Object, Object> NATURAL_EMPTY_MAP
68 ImmutableSortedMap(SortedMap<K, ? extends V> delegate) {
75 private static <K, V> ImmutableSortedMap<K, V> create(
83 return new ImmutableSortedMap<K, V>(delegate);
88 public static <K, V> ImmutableSortedMap<K, V> of() {
89 return (ImmutableSortedMap) NATURAL_EMPTY_MAP;
92 public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedMapTest.java 24 import com.google.common.collect.ImmutableSortedMap.Builder;
54 * Tests for {@link ImmutableSortedMap}.
76 .named("ImmutableSortedMap.keySet")
86 .named("ImmutableSortedMap.entrySet")
93 .named("ImmutableSortedMap.values")
104 .named("ImmutableSortedMap.keySet, reserialized")
115 .named("ImmutableSortedMap.entrySet, reserialized")
123 .named("ImmutableSortedMap.values, reserialized")
133 .named("ImmutableSortedMap.headMap.keySet")
143 .named("ImmutableSortedMap.subMap.entrySet"
    [all...]
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 344 milliseconds