Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for containsColumn (0.06 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 Dec 26 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/ArrayTable.java

      public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
        return containsRow(rowKey) && containsColumn(columnKey);
      }
    
      /**
       * Returns {@code true} if the provided column key is among the column keys provided when the
       * table was constructed.
       */
      @Override
      public boolean containsColumn(@Nullable Object columnKey) {
        return columnKeyToIndex.containsKey(columnKey);
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ArrayTable.java

      public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
        return containsRow(rowKey) && containsColumn(columnKey);
      }
    
      /**
       * Returns {@code true} if the provided column key is among the column keys provided when the
       * table was constructed.
       */
      @Override
      public boolean containsColumn(@Nullable Object columnKey) {
        return columnKeyToIndex.containsKey(columnKey);
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Table.java

      /**
       * Returns {@code true} if the table contains a mapping with the specified column.
       *
       * @param columnKey key of column to search for
       */
      boolean containsColumn(@CompatibleWith("C") @Nullable Object columnKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified value.
       *
       * @param value value to search for
       */
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Table.java

      /**
       * Returns {@code true} if the table contains a mapping with the specified column.
       *
       * @param columnKey key of column to search for
       */
      boolean containsColumn(@CompatibleWith("C") @Nullable Object columnKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified value.
       *
       * @param value value to search for
       */
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().containsRow(rowKey);
          }
        }
    
        @Override
        public boolean containsColumn(@Nullable Object columnKey) {
          synchronized (mutex) {
            return delegate().containsColumn(columnKey);
          }
        }
    
        @Override
        public boolean containsValue(@Nullable Object value) {
          synchronized (mutex) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 53K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().containsRow(rowKey);
          }
        }
    
        @Override
        public boolean containsColumn(@Nullable Object columnKey) {
          synchronized (mutex) {
            return delegate().containsColumn(columnKey);
          }
        }
    
        @Override
        public boolean containsValue(@Nullable Object value) {
          synchronized (mutex) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 56.9K bytes
    - Viewed (0)
Back to top