Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for safeContainsKey (0.07 sec)

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

        implements Table<R, C, V> {
    
      @Override
      public boolean containsRow(@Nullable Object rowKey) {
        return Maps.safeContainsKey(rowMap(), rowKey);
      }
    
      @Override
      public boolean containsColumn(@Nullable Object columnKey) {
        return Maps.safeContainsKey(columnMap(), columnKey);
      }
    
      @Override
      public Set<R> rowKeySet() {
        return rowMap().keySet();
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractTable.java

        implements Table<R, C, V> {
    
      @Override
      public boolean containsRow(@Nullable Object rowKey) {
        return Maps.safeContainsKey(rowMap(), rowKey);
      }
    
      @Override
      public boolean containsColumn(@Nullable Object columnKey) {
        return Maps.safeContainsKey(columnMap(), columnKey);
      }
    
      @Override
      public Set<R> rowKeySet() {
        return rowMap().keySet();
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. 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(@Nullable Object rowKey) {
        return rowKey != null && safeContainsKey(backingMap, rowKey);
      }
    
      @Override
      public boolean containsValue(@Nullable Object value) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableMap.java

        return false;
      }
    
      @Override
      public final boolean isEmpty() {
        return delegate.isEmpty();
      }
    
      @Override
      public final boolean containsKey(@Nullable Object key) {
        return Maps.safeContainsKey(delegate, key);
      }
    
      @Override
      public final boolean containsValue(@Nullable Object value) {
        return delegate.containsValue(value);
      }
    
      @Override
      public @Nullable V get(@Nullable Object key) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new AsMapEntries();
        }
    
        // The following methods are included for performance.
    
        @Override
        public boolean containsKey(@Nullable Object key) {
          return Maps.safeContainsKey(submap, key);
        }
    
        @Override
        public @Nullable Collection<V> get(@Nullable Object key) {
          Collection<V> collection = safeGet(submap, key);
          if (collection == null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
Back to top