Searched defs:fromTable (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DTables.java399 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
400 return new TransformedTable<R, C, V1, V2>(fromTable, function);
405 final Table<R, C, V1> fromTable; field in class:Tables.TransformedTable
409 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
410 this.fromTable = checkNotNull(fromTable);
415 return fromTable.contains(rowKey, columnKey);
419 return fromTable.containsRow(rowKey);
423 return fromTable.containsColumn(columnKey);
434 ? function.apply(fromTable
398 transformValues( Table<R, C, V1> fromTable, Function<? super V1, V2> function) argument
408 TransformedTable( Table<R, C, V1> fromTable, Function<? super V1, V2> function) argument
[all...]

Completed in 107 milliseconds