Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for UnmodifiableNavigableMap (0.83 seconds)

  1. android/guava/src/com/google/common/collect/Maps.java

          NavigableMap<K, V> unmodifiableNavigableMap(NavigableMap<K, ? extends V> map) {
        checkNotNull(map);
        if (map instanceof UnmodifiableNavigableMap) {
          @SuppressWarnings("unchecked") // covariant
          NavigableMap<K, V> result = (NavigableMap<K, V>) map;
          return result;
        } else {
          return new UnmodifiableNavigableMap<>(map);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Maps.java

          NavigableMap<K, V> unmodifiableNavigableMap(NavigableMap<K, ? extends V> map) {
        checkNotNull(map);
        if (map instanceof UnmodifiableNavigableMap) {
          @SuppressWarnings("unchecked") // covariant
          NavigableMap<K, V> result = (NavigableMap<K, V>) map;
          return result;
        } else {
          return new UnmodifiableNavigableMap<>(map);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Sets.java

    cpovirk <******@****.***> 1771874087 -0800
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 83K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/Sets.java

    cpovirk <******@****.***> 1771874087 -0800
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 81.4K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/collect/MapsTest.java

    import static com.google.common.collect.Maps.immutableEntry;
    import static com.google.common.collect.Maps.transformEntries;
    import static com.google.common.collect.Maps.transformValues;
    import static com.google.common.collect.Maps.unmodifiableNavigableMap;
    import static com.google.common.collect.ReflectionFreeAssertThrows.assertThrows;
    import static com.google.common.collect.testing.Helpers.mapEntry;
    import static com.google.common.truth.Truth.assertThat;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 63.2K bytes
    - Click Count (0)
Back to Top