Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for enum_ (0.11 sec)

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

        Collection<@Nullable String> c = MinimalCollection.of("a", null, "b");
        try {
          copyOf((Collection<String>) c);
          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      enum TestEnum {
        A,
        B,
        C,
        D
      }
    
      public void testCopyOf_collection_enumSet() {
        Collection<TestEnum> c = EnumSet.of(TestEnum.A, TestEnum.B, TestEnum.D);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java

        Collection<@Nullable String> c = MinimalCollection.of("a", null, "b");
        try {
          copyOf((Collection<String>) c);
          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      enum TestEnum {
        A,
        B,
        C,
        D
      }
    
      public void testCopyOf_collection_enumSet() {
        Collection<TestEnum> c = EnumSet.of(TestEnum.A, TestEnum.B, TestEnum.D);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 18.7K bytes
    - Viewed (0)
Back to top