Creates an empty TreeBasedTable that uses the natural orderings of both row and column keys. The method signature specifies R extends Comparable with a raw Comparable, instead of R extends Comparable<? super R>, and the same for C. That's necessary to supp
()
| 104 | |
| 105 | |
| 106 | public static <R extends Comparable, C extends Comparable, V> TreeBasedTable<R, C, V> create() { |
| 107 | return new TreeBasedTable<R, C, V>(Ordering.natural(), Ordering.natural()); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Creates an empty {@code TreeBasedTable} that is ordered by the specified |
nothing calls this directly
no test coverage detected