Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for columnKeySet (0.07 sec)

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

      @Override
      Cell<R, C, V> getCell(int index) {
        int rowIndex = cellRowIndices[index];
        int columnIndex = cellColumnIndices[index];
        R rowKey = rowKeySet().asList().get(rowIndex);
        C columnKey = columnKeySet().asList().get(columnIndex);
        // requireNonNull is safe because we use indexes that were populated by the constructor.
        V value = requireNonNull(values[rowIndex][columnIndex]);
        return cellOf(rowKey, columnKey, value);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Table.java

      /**
       * Returns a set of column keys that have one or more values in the table. Changes to the set will
       * update the underlying table, and vice versa.
       *
       * @return set of column keys
       */
      Set<C> columnKeySet();
    
      /**
       * Returns a collection of all values, which may contain duplicates. Changes to the returned
       * collection will update the underlying table, and vice versa.
       *
       * @return collection of values
    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/Table.java

      /**
       * Returns a set of column keys that have one or more values in the table. Changes to the set will
       * update the underlying table, and vice versa.
       *
       * @return set of column keys
       */
      Set<C> columnKeySet();
    
      /**
       * Returns a collection of all values, which may contain duplicates. Changes to the returned
       * collection will update the underlying table, and vice versa.
       *
       * @return collection of values
    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/Synchronized.java

          synchronized (mutex) {
            return set(delegate().rowKeySet(), mutex);
          }
        }
    
        @Override
        public Set<C> columnKeySet() {
          synchronized (mutex) {
            return set(delegate().columnKeySet(), mutex);
          }
        }
    
        @Override
        public Collection<V> values() {
          synchronized (mutex) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return set(delegate().rowKeySet(), mutex);
          }
        }
    
        @Override
        public Set<C> columnKeySet() {
          synchronized (mutex) {
            return set(delegate().columnKeySet(), mutex);
          }
        }
    
        @Override
        public Collection<V> values() {
          synchronized (mutex) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top