Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for StandardTable (0.64 sec)

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

        @CheckForNull
        public V put(R key, V value) {
          return StandardTable.this.put(key, columnKey, value);
        }
    
        @Override
        @CheckForNull
        public V get(@CheckForNull Object key) {
          return StandardTable.this.get(key, columnKey);
        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return StandardTable.this.contains(key, columnKey);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/StandardTable.java

        @CheckForNull
        public V put(R key, V value) {
          return StandardTable.this.put(key, columnKey, value);
        }
    
        @Override
        @CheckForNull
        public V get(@CheckForNull Object key) {
          return StandardTable.this.get(key, columnKey);
        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return StandardTable.this.contains(key, columnKey);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/StandardRowSortedTable.java

     * Table} interface.
     *
     * <p>Null keys and values are not supported.
     *
     * <p>See the {@link StandardTable} superclass for more information about the behavior of this
     * class.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class StandardRowSortedTable<R, C, V> extends StandardTable<R, C, V>
        implements RowSortedTable<R, C, V> {
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/StandardRowSortedTable.java

     * Table} interface.
     *
     * <p>Null keys and values are not supported.
     *
     * <p>See the {@link StandardTable} superclass for more information about the behavior of this
     * class.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class StandardRowSortedTable<R, C, V> extends StandardTable<R, C, V>
        implements RowSortedTable<R, C, V> {
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  5. cycle_suppress_list.txt

    FIELD java.util.AbstractMap.values com.google.common.collect.TreeRangeMap.SubRangeMap.SubRangeMapAsMap.values.$
    OUTER com.google.common.collect.StandardTable.Row
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/HashBasedTable.java

     *
     * @author Jared Levy
     * @since 7.0
     */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public class HashBasedTable<R, C, V> extends StandardTable<R, C, V> {
      private static class Factory<C, V> implements Supplier<Map<C, V>>, Serializable {
        final int expectedSize;
    
        Factory(int expectedSize) {
          this.expectedSize = expectedSize;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/HashBasedTable.java

     *
     * @author Jared Levy
     * @since 7.0
     */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public class HashBasedTable<R, C, V> extends StandardTable<R, C, V> {
      private static class Factory<C, V> implements Supplier<Map<C, V>>, Serializable {
        final int expectedSize;
    
        Factory(int expectedSize) {
          this.expectedSize = expectedSize;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Tables.java

        checkArgument(backingMap.isEmpty());
        checkNotNull(factory);
        // TODO(jlevy): Wrap factory to validate that the supplied maps are empty?
        return new StandardTable<>(backingMap, factory);
      }
    
      /**
       * Returns a view of a table where each value is transformed by a function. All other properties
       * of the table, such as iteration order, are left intact.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Tables.java

        checkArgument(backingMap.isEmpty());
        checkNotNull(factory);
        // TODO(jlevy): Wrap factory to validate that the supplied maps are empty?
        return new StandardTable<>(backingMap, factory);
      }
    
      /**
       * Returns a view of a table where each value is transformed by a function. All other properties
       * of the table, such as iteration order, are left intact.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top