Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StandardTable (0.14 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. 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)
  4. 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