Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for immutableEnumMap (0.07 sec)

  1. guava/src/com/google/common/collect/CollectCollectors.java

            return this;
          } else {
            other.map.forEach(this::put);
            return this;
          }
        }
    
        ImmutableMap<K, V> toImmutableMap() {
          return (map == null) ? ImmutableMap.of() : ImmutableEnumMap.asImmutable(map);
        }
      }
    
      @GwtIncompatible
      static <T extends @Nullable Object, K extends Comparable<? super K>, V>
          Collector<T, ?, ImmutableRangeMap<K, V>> toImmutableRangeMap(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top