Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AbstractListMultimap (0.07 sec)

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

     *
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible
    public final class ArrayListMultimap<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractListMultimap<K, V> {
      // Default from ArrayList
      private static final int DEFAULT_VALUES_PER_KEY = 3;
    
      @VisibleForTesting transient int expectedValuesPerKey;
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

        return new CustomListMultimap<>(map, factory);
      }
    
      private static final class CustomListMultimap<
              K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractListMultimap<K, V> {
        transient Supplier<? extends List<V>> factory;
    
        CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) {
          super(map);
          this.factory = checkNotNull(factory);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

        return new CustomListMultimap<>(map, factory);
      }
    
      private static final class CustomListMultimap<
              K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractListMultimap<K, V> {
        transient Supplier<? extends List<V>> factory;
    
        CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) {
          super(map);
          this.factory = checkNotNull(factory);
    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