- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for ImmutableCell (0.04 sec)
-
guava-tests/test/com/google/common/collect/TablesTest.java
} public void testEntryEquals() { Cell<String, Integer, Character> entry = immutableCell("foo", 1, 'a'); new EqualsTester() .addEqualityGroup(entry, immutableCell("foo", 1, 'a')) .addEqualityGroup(immutableCell("bar", 1, 'a')) .addEqualityGroup(immutableCell("foo", 2, 'a')) .addEqualityGroup(immutableCell("foo", 1, 'b')) .addEqualityGroup(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TablesTest.java
} public void testEntryEquals() { Cell<String, Integer, Character> entry = immutableCell("foo", 1, 'a'); new EqualsTester() .addEqualityGroup(entry, immutableCell("foo", 1, 'a')) .addEqualityGroup(immutableCell("bar", 1, 'a')) .addEqualityGroup(immutableCell("foo", 2, 'a')) .addEqualityGroup(immutableCell("foo", 1, 'b')) .addEqualityGroup(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TableCollectionTest.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java
@NullMarked public class RegularImmutableTableTest extends AbstractImmutableTableTest { private static final ImmutableSet<Cell<Character, Integer, String>> CELLS = ImmutableSet.of( immutableCell('a', 1, "foo"), immutableCell('b', 1, "bar"), immutableCell('a', 2, "baz")); private static final ImmutableSet<Character> ROW_SPACE = ImmutableSet.of('a', 'b'); private static final ImmutableSet<Integer> COLUMN_SPACE = ImmutableSet.of(1, 2);Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 6.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableTable.java
if (cell instanceof Tables.ImmutableCell) { checkNotNull(cell.getRowKey(), "row"); checkNotNull(cell.getColumnKey(), "column"); checkNotNull(cell.getValue(), "value"); @SuppressWarnings("unchecked") // all supported methods are covariant Cell<R, C, V> immutableCell = (Cell<R, C, V>) cell; cells.add(immutableCell); } else {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 21:07:18 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Tables.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 24.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SingletonImmutableTableTest.java
* See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; import static com.google.common.collect.Tables.immutableCell; import static com.google.common.truth.Truth.assertThat; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import com.google.common.testing.EqualsTester;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableTable.java
if (cell instanceof Tables.ImmutableCell) { checkNotNull(cell.getRowKey(), "row"); checkNotNull(cell.getColumnKey(), "column"); checkNotNull(cell.getValue(), "value"); @SuppressWarnings("unchecked") // all supported methods are covariant Cell<R, C, V> immutableCell = (Cell<R, C, V>) cell; cells.add(immutableCell); } else {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 21:07:18 UTC 2025 - 17.3K bytes - Viewed (0)