Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

          return original.contains(columnKey, rowKey);
        }
    
        @Override
        public boolean containsColumn(@CheckForNull Object columnKey) {
          return original.containsRow(columnKey);
        }
    
        @Override
        public boolean containsRow(@CheckForNull Object rowKey) {
          return original.containsColumn(rowKey);
        }
    
        @Override
        public boolean containsValue(@CheckForNull Object value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. android/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")
        @Nullable
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Table.java

      /**
       * 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") @CheckForNull 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K 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 row key.
       *
       * @param rowKey key of row to search for
       */
      boolean containsRow(@CompatibleWith("R") @CheckForNull 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top