Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StandardTable (0.06 sec)

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

        @Override
        public @Nullable V put(R key, V value) {
          return StandardTable.this.put(key, columnKey, value);
        }
    
        @Override
        public @Nullable V get(@Nullable Object key) {
          return StandardTable.this.get(key, columnKey);
        }
    
        @Override
        public boolean containsKey(@Nullable Object key) {
          return StandardTable.this.contains(key, columnKey);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  2. 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: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top