Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for containsColumn (0.32 sec)

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

          // requireNonNull is safe because of the containsColumn check.
          return containsColumn(key) ? column((C) requireNonNull(key)) : null;
        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return containsColumn(key);
        }
    
        @Override
        @CheckForNull
        public Map<R, V> remove(@CheckForNull Object key) {
          return containsColumn(key) ? removeColumn(key) : null;
        }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 29.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ArrayTableTest.java

      @Override
      public void testContainsColumn() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertTrue(table.containsColumn(1));
        assertTrue(table.containsColumn(3));
        assertTrue(table.containsColumn(2));
        assertFalse(table.containsColumn(-1));
        assertFalse(table.containsColumn(null));
      }
    
      @Override
      public void testContainsValue() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ArrayTableTest.java

      @Override
      public void testContainsColumn() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertTrue(table.containsColumn(1));
        assertTrue(table.containsColumn(3));
        assertTrue(table.containsColumn(2));
        assertFalse(table.containsColumn(-1));
        assertFalse(table.containsColumn(null));
      }
    
      @Override
      public void testContainsValue() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  4. 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);
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  5. 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) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  6. 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);
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.9K bytes
    - Viewed (0)
  7. 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
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 10.7K bytes
    - Viewed (0)
Back to top