Class Tables
- java.lang.Object
-
- org.glassfish.jersey.internal.guava.Tables
-
public final class Tables extends Object
- Since:
- 7.0
- Author:
- Jared Levy, Louis Wasserman
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <R,C,V>
Table.Cell<R,C,V>immutableCell(R rowKey, C columnKey, V value)Returns an immutable cell with the specified row key, column key, and value.
-
-
-
Method Detail
-
immutableCell
public static <R,C,V> Table.Cell<R,C,V> immutableCell(R rowKey, C columnKey, V value)
Returns an immutable cell with the specified row key, column key, and value.The returned cell is serializable.
- Parameters:
rowKey- the row key to be associated with the returned cellcolumnKey- the column key to be associated with the returned cellvalue- the value to be associated with the returned cell
-
-