Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkArgument (0.22 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

        public V put(@ParametricNullness K key, @ParametricNullness V value) {
          checkArgument(apply(key, value));
          return unfiltered.put(key, value);
        }
    
        @Override
        public void putAll(Map<? extends K, ? extends V> map) {
          for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
            checkArgument(apply(entry.getKey(), entry.getValue()));
          }
          unfiltered.putAll(map);
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

        public V put(@ParametricNullness K key, @ParametricNullness V value) {
          checkArgument(apply(key, value));
          return unfiltered.put(key, value);
        }
    
        @Override
        public void putAll(Map<? extends K, ? extends V> map) {
          for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
            checkArgument(apply(entry.getKey(), entry.getValue()));
          }
          unfiltered.putAll(map);
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    package com.google.common.util.concurrent;
    
    import static com.google.common.base.Functions.constant;
    import static com.google.common.base.MoreObjects.toStringHelper;
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.collect.Lists.asList;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 08 19:36:35 UTC 2024
    - 98.5K bytes
    - Viewed (0)
Back to top