- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for StandardTable (0.04 sec)
-
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) -
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: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 24 01:59:49 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBasedTable.java
* "https://github.com/google/guava/wiki/NewCollectionTypesExplained#table">{@code Table}</a>. * * @author Jared Levy * @since 7.0 */ @GwtCompatible public class HashBasedTable<R, C, V> extends StandardTable<R, C, V> { private static final class Factory<C, V> implements Supplier<Map<C, V>>, Serializable { final int expectedSize; Factory(int expectedSize) { this.expectedSize = expectedSize; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashBasedTable.java
* "https://github.com/google/guava/wiki/NewCollectionTypesExplained#table">{@code Table}</a>. * * @author Jared Levy * @since 7.0 */ @GwtCompatible public class HashBasedTable<R, C, V> extends StandardTable<R, C, V> { private static final class Factory<C, V> implements Supplier<Map<C, V>>, Serializable { final int expectedSize; Factory(int expectedSize) { this.expectedSize = expectedSize; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.1K bytes - Viewed (0) -
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)