Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StandardRowSortedTable (0.41 sec)

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

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class StandardRowSortedTable<R, C, V> extends StandardTable<R, C, V>
        implements RowSortedTable<R, C, V> {
      /*
       * TODO(jlevy): Consider adding headTable, tailTable, and subTable methods,
       * which return a Table view with rows keys in a given range. Create a
       * RowSortedTable subinterface with the revised methods?
       */
    
      StandardRowSortedTable(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jul 15 15:41:16 GMT 2021
    - 4.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeBasedTable.java

     *
     * @author Jared Levy
     * @author Louis Wasserman
     * @since 7.0
     */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public class TreeBasedTable<R, C, V> extends StandardRowSortedTable<R, C, V> {
      private final Comparator<? super C> columnComparator;
    
      private static class Factory<C, V> implements Supplier<TreeMap<C, V>>, Serializable {
        final Comparator<? super C> comparator;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 11.4K bytes
    - Viewed (0)
Back to top