Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 82 of 82 for ALLOWS_NULL_KEYS (0.05 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

      }
    
      static Set<Feature<?>> computeKeysFeatures(Set<Feature<?>> multimapFeatures) {
        Set<Feature<?>> result = computeDerivedCollectionFeatures(multimapFeatures);
        if (multimapFeatures.contains(MapFeature.ALLOWS_NULL_KEYS)) {
          result.add(CollectionFeature.ALLOWS_NULL_VALUES);
        }
        if (multimapFeatures.contains(MapFeature.ALLOWS_NULL_KEY_QUERIES)) {
          result.add(CollectionFeature.ALLOWS_NULL_QUERIES);
        }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 20:54:16 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java

                        }
                        return multimap;
                      }
                    })
                .named("LinkedHashMultimap")
                .withFeatures(
                    MapFeature.ALLOWS_NULL_KEYS,
                    MapFeature.ALLOWS_NULL_VALUES,
                    MapFeature.ALLOWS_ANY_NULL_QUERIES,
                    MapFeature.GENERAL_PURPOSE,
                    MapFeature.FAILS_FAST_ON_CONCURRENT_MODIFICATION,
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top