Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for containsRow (0.04 sec)

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

        /*
         * TODO(jlevy): Support only one of rowKey / columnKey being empty? If we
         * do, when columnKeys is empty but rowKeys isn't, rowKeyList() can contain
         * elements but rowKeySet() will be empty and containsRow() won't
         * acknowledge them.
         */
        rowKeyToIndex = Maps.indexMap(rowList);
        columnKeyToIndex = Maps.indexMap(columnList);
    
        @SuppressWarnings("unchecked")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/StandardTable.java

        public boolean containsKey(@Nullable Object key) {
          return containsRow(key);
        }
    
        // performing cast only when key is in backing map and has the correct type
        @SuppressWarnings("unchecked")
        @Override
        public @Nullable Map<C, V> get(@Nullable Object key) {
          // requireNonNull is safe because of the containsRow check.
          return containsRow(key) ? row((R) requireNonNull(key)) : null;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Tables.java

          return original.contains(columnKey, rowKey);
        }
    
        @Override
        public boolean containsColumn(@Nullable Object columnKey) {
          return original.containsRow(columnKey);
        }
    
        @Override
        public boolean containsRow(@Nullable Object rowKey) {
          return original.containsColumn(rowKey);
        }
    
        @Override
        public boolean containsValue(@Nullable Object value) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Table.java

          @CompatibleWith("C") @Nullable Object columnKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified row key.
       *
       * @param rowKey key of row to search for
       */
      boolean containsRow(@CompatibleWith("R") @Nullable Object rowKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified column.
       *
       * @param columnKey key of column to search for
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top