Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for ListMultimap (0.17 sec)

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

                      @Override
                      ListMultimap<String, String> transform(Multimap<String, String> multimap) {
                        return Multimaps.transformValues(
                            (ListMultimap<String, String>) multimap, FUNCTION);
                      }
                    })
                .named("Multimaps.transformValues[ListMultimap]")
                .withFeatures(
                    CollectionSize.ANY,
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 29.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

        assertSame(multimap.asMap(), map);
      }
    
      public void testAsMap_listMultimap() {
        ListMultimap<String, Integer> listMultimap = ArrayListMultimap.create();
        Map<String, List<Integer>> map = Multimaps.asMap(listMultimap);
        assertSame(listMultimap.asMap(), map);
      }
    
      public void testAsMap_setMultimap() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 39.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MultimapsTest.java

        assertSame(multimap.asMap(), map);
      }
    
      public void testAsMap_listMultimap() {
        ListMultimap<String, Integer> listMultimap = ArrayListMultimap.create();
        Map<String, List<Integer>> map = Multimaps.asMap(listMultimap);
        assertSame(listMultimap.asMap(), map);
      }
    
      public void testAsMap_setMultimap() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

                      @Override
                      ListMultimap<String, String> transform(Multimap<String, String> multimap) {
                        return Multimaps.transformValues(
                            (ListMultimap<String, String>) multimap, FUNCTION);
                      }
                    })
                .named("Multimaps.transformValues[ListMultimap]")
                .withFeatures(
                    CollectionSize.ANY,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimap.java

     * ListMultimap} and {@link SetMultimap}. These take their names from the fact that the collections
     * they return from {@code get} behave like (and, of course, implement) {@link List} and {@link
     * Set}, respectively.
     *
     * <p>For example, the "presidents" code snippet above used a {@code ListMultimap}; if it had used a
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MultimapBuilder.java

       *
       * @since 16.0
       */
      public abstract static class ListMultimapBuilder<
              K0 extends @Nullable Object, V0 extends @Nullable Object>
          extends MultimapBuilder<K0, V0> {
        ListMultimapBuilder() {}
    
        @Override
        public abstract <K extends K0, V extends V0> ListMultimap<K, V> build();
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        suite.addTest(
            ListMultimapTestSuiteBuilder.using(
                    new TestStringListMultimapGenerator() {
                      @Override
                      protected ListMultimap<String, String> create(Entry<String, String>[] entries) {
                        ListMultimap<String, String> multimap = LinkedListMultimap.create();
                        for (Entry<String, String> entry : entries) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 18K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableListMultimap.java

    import java.util.function.Function;
    import java.util.stream.Collector;
    import java.util.stream.Stream;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link ListMultimap} whose contents will never change, with many other important properties
     * detailed at {@link ImmutableCollection}.
     *
     * <p>See the Guava User Guide article on <a href=
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 17.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        suite.addTest(
            ListMultimapTestSuiteBuilder.using(
                    new TestStringListMultimapGenerator() {
                      @Override
                      protected ListMultimap<String, String> create(Entry<String, String>[] entries) {
                        ListMultimap<String, String> multimap = LinkedListMultimap.create();
                        for (Entry<String, String> entry : entries) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/LinkedListMultimap.java

    import java.util.NoSuchElementException;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An implementation of {@code ListMultimap} that supports deterministic iteration order for both
     * keys and values. The iteration order is preserved across non-distinct key values. For example,
     * for the following multimap definition:
     *
     * <pre>{@code
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 27.2K bytes
    - Viewed (0)
Back to top