Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for safeContainsKey (0.25 sec)

  1. guava/src/com/google/common/collect/StandardTable.java

          return false;
        }
        for (Map<C, V> map : backingMap.values()) {
          if (safeContainsKey(map, columnKey)) {
            return true;
          }
        }
        return false;
      }
    
      @Override
      public boolean containsRow(@CheckForNull Object rowKey) {
        return rowKey != null && safeContainsKey(backingMap, rowKey);
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/StandardTable.java

          return false;
        }
        for (Map<C, V> map : backingMap.values()) {
          if (safeContainsKey(map, columnKey)) {
            return true;
          }
        }
        return false;
      }
    
      @Override
      public boolean containsRow(@CheckForNull Object rowKey) {
        return rowKey != null && safeContainsKey(backingMap, rowKey);
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new AsMapEntries();
        }
    
        // The following methods are included for performance.
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return Maps.safeContainsKey(submap, key);
        }
    
        @Override
        @CheckForNull
        public Collection<V> get(@CheckForNull Object key) {
          Collection<V> collection = Maps.safeGet(submap, key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new AsMapEntries();
        }
    
        // The following methods are included for performance.
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return Maps.safeContainsKey(submap, key);
        }
    
        @Override
        @CheckForNull
        public Collection<V> get(@CheckForNull Object key) {
          Collection<V> collection = Maps.safeGet(submap, key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
Back to top