Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AbstractCell (0.22 sec)

  1. android/guava/src/com/google/common/collect/TableCollectors.java

     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.Tables.AbstractCell;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.function.BinaryOperator;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.stream.Collector;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TableCollectors.java

     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.Tables.AbstractCell;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.function.BinaryOperator;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.stream.Collector;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Tables.java

          return value;
        }
    
        private static final long serialVersionUID = 0;
      }
    
      abstract static class AbstractCell<
              R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          implements Cell<R, C, V> {
        // needed for serialization
        AbstractCell() {}
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj == this) {
            return true;
    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

          return value;
        }
    
        private static final long serialVersionUID = 0;
      }
    
      abstract static class AbstractCell<
              R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          implements Cell<R, C, V> {
        // needed for serialization
        AbstractCell() {}
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj == this) {
            return true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ArrayTable.java

          protected Cell<R, C, @Nullable V> get(final int index) {
            return getCell(index);
          }
        };
      }
    
      private Cell<R, C, @Nullable V> getCell(final int index) {
        return new Tables.AbstractCell<R, C, @Nullable V>() {
          final int rowIndex = index / columnList.size();
          final int columnIndex = index % columnList.size();
    
          @Override
          public R getRowKey() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ArrayTable.java

            size(), Spliterator.ORDERED | Spliterator.NONNULL | Spliterator.DISTINCT, this::getCell);
      }
    
      private Cell<R, C, @Nullable V> getCell(final int index) {
        return new Tables.AbstractCell<R, C, @Nullable V>() {
          final int rowIndex = index / columnList.size();
          final int columnIndex = index % columnList.size();
    
          @Override
          public R getRowKey() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top