Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newSetMultimap (0.1 sec)

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

          return new SetMultimapBuilder<K0, @Nullable Object>() {
            @Override
            public <K extends K0, V extends @Nullable Object> SetMultimap<K, V> build() {
              return Multimaps.newSetMultimap(
                  MultimapBuilderWithKeys.this.<K, V>createMap(),
                  new HashSetSupplier<V>(expectedValuesPerKey));
            }
          };
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MultimapBuilder.java

          return new SetMultimapBuilder<K0, @Nullable Object>() {
            @Override
            public <K extends K0, V extends @Nullable Object> SetMultimap<K, V> build() {
              return Multimaps.newSetMultimap(
                  MultimapBuilderWithKeys.this.<K, V>createMap(),
                  new HashSetSupplier<V>(expectedValuesPerKey));
            }
          };
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p><b>Warning: do not use</b> this method when the collections returned by {@code factory}
       * implement either {@link List} or {@code Set}! Use the more specific method {@link
       * #newListMultimap}, {@link #newSetMultimap} or {@link #newSortedSetMultimap} instead, to avoid
       * very surprising behavior from {@link Multimap#equals}.
       *
       * <p>The {@code factory}-generated and {@code map} classes determine the multimap iteration
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multimaps.java

       *
       * <p><b>Warning: do not use</b> this method when the collections returned by {@code factory}
       * implement either {@link List} or {@code Set}! Use the more specific method {@link
       * #newListMultimap}, {@link #newSetMultimap} or {@link #newSortedSetMultimap} instead, to avoid
       * very surprising behavior from {@link Multimap#equals}.
       *
       * <p>The {@code factory}-generated and {@code map} classes determine the multimap iteration
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
Back to top