Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ArrayListMultimap (0.15 sec)

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

        ArrayListMultimap<@Nullable String, Integer> input = ArrayListMultimap.create();
        input.put(null, 1);
        try {
          ImmutableListMultimap.copyOf((ArrayListMultimap<String, Integer>) input);
          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      public void testCopyOfNullValue() {
        ArrayListMultimap<String, @Nullable Integer> input = ArrayListMultimap.create();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java

        ArrayListMultimap<@Nullable String, Integer> input = ArrayListMultimap.create();
        input.put(null, 1);
        try {
          ImmutableListMultimap.copyOf((ArrayListMultimap<String, Integer>) input);
          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      public void testCopyOfNullValue() {
        ArrayListMultimap<String, @Nullable Integer> input = ArrayListMultimap.create();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 22.2K bytes
    - Viewed (0)
Back to top