Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testEnumBiMapConstructor (0.18 sec)

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

        Map<Currency, Country> emptyBimap = EnumBiMap.create(Currency.class, Country.class);
        bimap = EnumBiMap.create(emptyBimap);
        assertTrue(bimap.isEmpty());
      }
    
      public void testEnumBiMapConstructor() {
        /* Test that it copies existing entries. */
        EnumBiMap<Currency, Country> bimap1 = EnumBiMap.create(Currency.class, Country.class);
        bimap1.put(Currency.DOLLAR, Country.CANADA);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top