Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for containsColumn (0.09 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. 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") @CheckForNull Object columnKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified value.
       *
       * @param value value 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)
  3. android/guava/src/com/google/common/collect/ArrayTable.java

        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(@CheckForNull Object columnKey) {
        return columnKeyToIndex.containsKey(columnKey);
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.3K 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") @CheckForNull Object columnKey);
    
      /**
       * Returns {@code true} if the table contains a mapping with the specified value.
       *
       * @param value value 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