Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for immutableCell (0.11 sec)

  1. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

                        return new SampleElements<>(
                            immutableCell("bar", 1, 'a'),
                            immutableCell("bar", 2, 'b'),
                            immutableCell("bar", 3, (Character) null),
                            immutableCell("bar", 4, 'b'),
                            immutableCell("bar", 5, 'b'));
                      }
    
                      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/TableCollectionTest.java

                        return new SampleElements<>(
                            immutableCell("bar", 1, 'a'),
                            immutableCell("bar", 2, 'b'),
                            immutableCell("bar", 3, (Character) null),
                            immutableCell("bar", 4, 'b'),
                            immutableCell("bar", 5, 'b'));
                      }
    
                      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableTableTest.java

        CollectorTester.of(collector)
            .expectCollects(ImmutableTable.of())
            .expectCollects(
                ImmutableTable.of("one", "uno", 3),
                immutableCell("one", "uno", 1),
                immutableCell("one", "uno", 2));
      }
    
      public void testBuilder() {
        ImmutableTable.Builder<Character, Integer, String> builder = new ImmutableTable.Builder<>();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Tables.java

          Cell<R, C, V> immutableCell(
              @ParametricNullness R rowKey,
              @ParametricNullness C columnKey,
              @ParametricNullness V value) {
        return new ImmutableCell<>(rowKey, columnKey, value);
      }
    
      static final class ImmutableCell<
              R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top