本文整理汇总了Java中com.google.common.collect.Tables.immutableCell方法的典型用法代码示例。如果您正苦于以下问题:Java Tables.immutableCell方法的具体用法?Java Tables.immutableCell怎么用?Java Tables.immutableCell使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.collect.Tables
的用法示例。
在下文中一共展示了Tables.immutableCell方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: map
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Override
public Table.Cell<R, C, V> map(int index, ResultSet r, StatementContext ctx) throws SQLException {
return Tables.immutableCell(
rowMapper.map(index, r, ctx),
columnMapper.map(index, r, ctx),
valueMapper.map(index, r, ctx)
);
}
示例2: apply
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Override
public Table.Cell<Bytes, Bytes, Bytes> apply(AzureEntity input) {
return Tables.immutableCell(
decode(input.getPartitionKey()),
decode(input.getRowKey()),
decode(input.getValue()));
}
示例3: contains_delegates_to_table
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Test
public void contains_delegates_to_table() {
Object o1 = new Object();
Object o2 = new Object();
Table.Cell<Object, Object, Object> cell = Tables.immutableCell(o1, o2, new Object());
when(baseAzureTable.contains(o1, o2)).thenReturn(true);
assertThat(set.contains(cell), is(equalTo(true)));
}
示例4: apply
import com.google.common.collect.Tables; //导入方法依赖的package包/类
@Override
public Cell<R1, C1, V1> apply(Cell<R, C, V> input) {
return Tables.immutableCell(
toRowFunction.apply(input.getRowKey()),
toColumnFunction.apply(input.getColumnKey()),
toValueFunction.apply(input.getValue())
);
}
示例5: cellSet_delegates_to_backing_table
import com.google.common.collect.Tables; //导入方法依赖的package包/类
public void cellSet_delegates_to_backing_table() {
Set<Table.Cell<String, String, String>> cellSet = Collections.singleton(Tables.immutableCell(STRING_ROW_KEY_1, STRING_COLUMN_KEY_1, STRING_VALUE_1));
when(backingTableMock.cellSet()).thenReturn(cellSet);
Table.Cell<Float, Long, Integer> expectedCell = Tables.immutableCell(ROW_KEY_1, COLUMN_KEY_1, VALUE_1);
//noinspection unchecked
assertThat(transformingTable.cellSet(), containsInAnyOrder(expectedCell));
}