Home | History | Annotate | Download | only in collect

Lines Matching defs:of

6  * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36 * it has no public or protected constructors. Thus, instances of this class are
51 ImmutableList.<Cell<Object, Object, Object>>of(),
52 ImmutableSet.of(), ImmutableSet.of());
56 public static <R, C, V> ImmutableTable<R, C, V> of() {
61 public static <R, C, V> ImmutableTable<R, C, V> of(R rowKey,
67 * Returns an immutable copy of the provided table.
69 * <p>The {@link Table#cellSet()} iteration order of the provided table
70 * determines the iteration ordering of all views in the returned table. Note
71 * that some views of the original table and the copied table may have
91 return of();
95 return ImmutableTable.<R, C, V>of(onlyCell.getRowKey(),
143 * the iteration ordering of all views in the returned table, with {@link
148 * For empty or single-cell immutable tables, {@link #of()} and
149 * {@link #of(Object, Object, Object)} are even more convenient.
153 * of the tables created before it.
169 * Specifies the ordering of the generated table's rows.
177 * Specifies the ordering of the generated table's columns.
216 * Associates all of the given table's keys and values in the built table.
239 return of();
286 ImmutableMap.<R, V>of());
310 ImmutableMap.<C, V>of());