Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testTreeKeys (0.23 sec)

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

                .hashSetValues()
                .<String, Integer>build();
      }
    
      @J2ktIncompatible
      @GwtIncompatible // doesn't build without explicit type parameters on build() methods
      public void testTreeKeys() {
        ListMultimap<String, Integer> multimap = MultimapBuilder.treeKeys().arrayListValues().build();
        assertTrue(multimap.keySet() instanceof SortedSet);
        assertTrue(multimap.asMap() instanceof SortedMap);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top