Class Tables
java.lang.Object
org.glassfish.jersey.internal.guava.Tables
- Since:
- 7.0
- Author:
- Jared Levy, Louis Wasserman
-
Method Summary
Modifier and TypeMethodDescriptionstatic <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 Details
-
immutableCell
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
-