Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for linkedListValues (0.06 sec)

  1. guava-tests/test/com/google/common/collect/MultimapBuilderTest.java

                MultimapBuilder.enumKeys(RoundingMode.class))) {
          for (MultimapBuilder<?, ?> builder :
              ImmutableList.of(
                  builderWithKeys.arrayListValues(),
                  builderWithKeys.linkedListValues(),
                  builderWithKeys.hashSetValues(),
                  builderWithKeys.linkedHashSetValues(),
                  builderWithKeys.treeSetValues(),
                  builderWithKeys.enumSetValues(RoundingMode.class))) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MultimapBuilder.java

          @SuppressWarnings({"rawtypes", "unchecked"})
          Supplier<List<V>> result = (Supplier) INSTANCE;
          return result;
        }
    
        @Override
        // We recommend against linkedListValues but need to keep it for compatibility.
        @SuppressWarnings("JdkObsolete")
        public List<?> get() {
          return new LinkedList<>();
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MultimapBuilder.java

          @SuppressWarnings({"rawtypes", "unchecked"})
          Supplier<List<V>> result = (Supplier) INSTANCE;
          return result;
        }
    
        @Override
        // We recommend against linkedListValues but need to keep it for compatibility.
        @SuppressWarnings("JdkObsolete")
        public List<?> get() {
          return new LinkedList<>();
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top