Class ImmutableTable<R,C,V>
- java.lang.Object
- 
- com.google.common.collect.ImmutableTable<R,C,V>
 
- 
- All Implemented Interfaces:
- Table<R,C,V>,- Serializable
 
 @GwtCompatible public abstract class ImmutableTable<R,C,V> extends Object implements Serializable ATablewhose contents will never change, with many other important properties detailed atImmutableCollection.See the Guava User Guide article on immutable collections. - Since:
- 11.0
- Author:
- Gregory Kick
- See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classImmutableTable.Builder<R,C,V>A builder for creating immutable table instances, especiallypublic static finaltables ("constant tables").- 
Nested classes/interfaces inherited from interface com.google.common.collect.TableTable.Cell<R,C,V>
 
- 
 - 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <R,C,V>
 ImmutableTable.Builder<R,C,V>builder()Returns a new builder.ImmutableSet<Table.Cell<R,C,V>>cellSet()Returns a set of all row key / column key / value triplets.voidclear()Deprecated.Unsupported operation.ImmutableMap<R,V>column(C columnKey)Returns a view of all mappings that have the given column key.ImmutableSet<C>columnKeySet()Returns a set of column keys that have one or more values in the table.abstract ImmutableMap<C,Map<R,V>>columnMap()Returns a view that associates each column key with the corresponding map from row keys to values.booleancontains(@Nullable Object rowKey, @Nullable Object columnKey)Returnstrueif the table contains a mapping with the specified row and column keys.booleancontainsColumn(@Nullable Object columnKey)Returnstrueif the table contains a mapping with the specified column.booleancontainsRow(@Nullable Object rowKey)Returnstrueif the table contains a mapping with the specified row key.booleancontainsValue(@Nullable Object value)Returnstrueif the table contains a mapping with the specified value.static <R,C,V>
 ImmutableTable<R,C,V>copyOf(Table<? extends R,? extends C,? extends V> table)Returns an immutable copy of the provided table.booleanequals(@Nullable Object obj)Indicates whether some other object is "equal to" this one.Vget(@Nullable Object rowKey, @Nullable Object columnKey)Returns the value corresponding to the given row and column keys, ornullif no such mapping exists.inthashCode()Returns a hash code value for the object.booleanisEmpty()Returnstrueif the table contains no mappings.static <R,C,V>
 ImmutableTable<R,C,V>of()Returns an empty immutable table.static <R,C,V>
 ImmutableTable<R,C,V>of(R rowKey, C columnKey, V value)Returns an immutable table containing a single cell.Vput(R rowKey, C columnKey, V value)Deprecated.Unsupported operation.voidputAll(Table<? extends R,? extends C,? extends V> table)Deprecated.Unsupported operation.Vremove(Object rowKey, Object columnKey)Deprecated.Unsupported operation.ImmutableMap<C,V>row(R rowKey)Returns a view of all mappings that have the given row key.ImmutableSet<R>rowKeySet()Returns a set of row keys that have one or more values in the table.abstract ImmutableMap<R,Map<C,V>>rowMap()Returns a view that associates each row key with the corresponding map from column keys to values.static <T,R,C,V>
 Collector<T,?,ImmutableTable<R,C,V>>toImmutableTable(Function<? super T,? extends R> rowFunction, Function<? super T,? extends C> columnFunction, Function<? super T,? extends V> valueFunction)Returns aCollectorthat accumulates elements into anImmutableTable.static <T,R,C,V>
 Collector<T,?,ImmutableTable<R,C,V>>toImmutableTable(Function<? super T,? extends R> rowFunction, Function<? super T,? extends C> columnFunction, Function<? super T,? extends V> valueFunction, BinaryOperator<V> mergeFunction)Returns aCollectorthat accumulates elements into anImmutableTable.StringtoString()Returns the string representationrowMap().toString().ImmutableCollection<V>values()Returns a collection of all values, which may contain duplicates.
 
- 
- 
- 
Method Detail- 
toImmutableTablepublic static <T,R,C,V> Collector<T,?,ImmutableTable<R,C,V>> toImmutableTable(Function<? super T,? extends R> rowFunction, Function<? super T,? extends C> columnFunction, Function<? super T,? extends V> valueFunction) Returns aCollectorthat accumulates elements into anImmutableTable. Each input element is mapped to one cell in the returned table, with the rows, columns, and values generated by applying the specified functions.The returned Collectorwill throw aNullPointerExceptionat collection time if the row, column, or value functions return null on any input.- Since:
- 21.0
 
 - 
toImmutableTablepublic static <T,R,C,V> Collector<T,?,ImmutableTable<R,C,V>> toImmutableTable(Function<? super T,? extends R> rowFunction, Function<? super T,? extends C> columnFunction, Function<? super T,? extends V> valueFunction, BinaryOperator<V> mergeFunction) Returns aCollectorthat accumulates elements into anImmutableTable. Each input element is mapped to one cell in the returned table, with the rows, columns, and values generated by applying the specified functions. If multiple inputs are mapped to the same row and column pair, they will be combined with the specified merging function in encounter order.The returned Collectorwill throw aNullPointerExceptionat collection time if the row, column, value, or merging functions return null on any input.- Since:
- 21.0
 
 - 
ofpublic static <R,C,V> ImmutableTable<R,C,V> of() Returns an empty immutable table.
 - 
ofpublic static <R,C,V> ImmutableTable<R,C,V> of(R rowKey, C columnKey, V value) Returns an immutable table containing a single cell.
 - 
copyOfpublic static <R,C,V> ImmutableTable<R,C,V> copyOf(Table<? extends R,? extends C,? extends V> table) Returns an immutable copy of the provided table.The Table.cellSet()iteration order of the provided table determines the iteration ordering of all views in the returned table. Note that some views of the original table and the copied table may have different iteration orders. For more control over the ordering, create aImmutableTable.Builderand callImmutableTable.Builder.orderRowsBy(java.util.Comparator<? super R>),ImmutableTable.Builder.orderColumnsBy(java.util.Comparator<? super C>), andImmutableTable.Builder.putAll(com.google.common.collect.Table<? extends R, ? extends C, ? extends V>)Despite the method name, this method attempts to avoid actually copying the data when it is safe to do so. The exact circumstances under which a copy will or will not be performed are undocumented and subject to change. 
 - 
builderpublic static <R,C,V> ImmutableTable.Builder<R,C,V> builder() Returns a new builder. The generated builder is equivalent to the builder created by theImmutableTable.Builder()constructor.
 - 
cellSetpublic ImmutableSet<Table.Cell<R,C,V>> cellSet() Description copied from interface:TableReturns a set of all row key / column key / value triplets. Changes to the returned set will update the underlying table, and vice versa. The cell set does not support theaddoraddAllmethods.
 - 
valuespublic ImmutableCollection<V> values() Description copied from interface:TableReturns a collection of all values, which may contain duplicates. Changes to the returned collection will update the underlying table, and vice versa.
 - 
columnpublic ImmutableMap<R,V> column(C columnKey) Returns a view of all mappings that have the given column key. For each row key / column key / value mapping in the table with that column key, the returned map associates the row key with the value. If no mappings in the table have the provided column key, an empty map is returned.Changes to the returned map will update the underlying table, and vice versa. 
 - 
columnKeySetpublic ImmutableSet<C> columnKeySet() Description copied from interface:TableReturns a set of column keys that have one or more values in the table. Changes to the set will update the underlying table, and vice versa.- Specified by:
- columnKeySetin interface- Table<R,C,V>
- Returns:
- set of column keys
 
 - 
columnMappublic abstract ImmutableMap<C,Map<R,V>> columnMap() Returns a view that associates each column key with the corresponding map from row keys to values. Changes to the returned map will update this table. The returned map does not supportput()orputAll(), orsetValue()on its entries.In contrast, the maps returned by columnMap().get()have the same behavior as those returned byTable.column(C). Those maps may supportsetValue(),put(), andputAll().The value Map<R, V>instances in the returned map areImmutableMapinstances as well.
 - 
rowpublic ImmutableMap<C,V> row(R rowKey) Returns a view of all mappings that have the given row key. For each row key / column key / value mapping in the table with that row key, the returned map associates the column key with the value. If no mappings in the table have the provided row key, an empty map is returned.Changes to the returned map will update the underlying table, and vice versa. 
 - 
rowKeySetpublic ImmutableSet<R> rowKeySet() Description copied from interface:TableReturns a set of row keys that have one or more values in the table. Changes to the set will update the underlying table, and vice versa.
 - 
rowMappublic abstract ImmutableMap<R,Map<C,V>> rowMap() Returns a view that associates each row key with the corresponding map from column keys to values. Changes to the returned map will update this table. The returned map does not supportput()orputAll(), orsetValue()on its entries.In contrast, the maps returned by rowMap().get()have the same behavior as those returned byTable.row(R). Those maps may supportsetValue(),put(), andputAll().The value Map<C, V>instances in the returned map areImmutableMapinstances as well.
 - 
containspublic boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) Description copied from interface:TableReturnstrueif the table contains a mapping with the specified row and column keys.
 - 
containsValuepublic boolean containsValue(@Nullable Object value) Description copied from interface:TableReturnstrueif the table contains a mapping with the specified value.- Specified by:
- containsValuein interface- Table<R,C,V>
- Parameters:
- value- value to search for
 
 - 
clear@Deprecated public final void clear() Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the table unmodified.
 - 
put@CanIgnoreReturnValue @Deprecated public final V put(R rowKey, C columnKey, V value) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the table unmodified.- Specified by:
- putin interface- Table<R,C,V>
- Parameters:
- rowKey- row key that the value should be associated with
- columnKey- column key that the value should be associated with
- value- value to be associated with the specified keys
- Returns:
- the value previously associated with the keys, or nullif no mapping existed for the keys
- Throws:
- UnsupportedOperationException- always
 
 - 
putAll@Deprecated public final void putAll(Table<? extends R,? extends C,? extends V> table) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the table unmodified.
 - 
remove@CanIgnoreReturnValue @Deprecated public final V remove(Object rowKey, Object columnKey) Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the table unmodified.
 - 
containsRowpublic boolean containsRow(@Nullable Object rowKey) Description copied from interface:TableReturnstrueif the table contains a mapping with the specified row key.- Specified by:
- containsRowin interface- Table<R,C,V>
- Parameters:
- rowKey- key of row to search for
 
 - 
containsColumnpublic boolean containsColumn(@Nullable Object columnKey) Description copied from interface:TableReturnstrueif the table contains a mapping with the specified column.- Specified by:
- containsColumnin interface- Table<R,C,V>
- Parameters:
- columnKey- key of column to search for
 
 - 
getpublic V get(@Nullable Object rowKey, @Nullable Object columnKey) Description copied from interface:TableReturns the value corresponding to the given row and column keys, ornullif no such mapping exists.
 - 
isEmptypublic boolean isEmpty() Description copied from interface:TableReturnstrueif the table contains no mappings.
 - 
equalspublic boolean equals(@Nullable Object obj) Description copied from class:java.lang.ObjectIndicates whether some other object is "equal to" this one.The equalsmethod implements an equivalence relation on non-null object references:- It is reflexive: for any non-null reference value
     x,x.equals(x)should returntrue.
- It is symmetric: for any non-null reference values
     xandy,x.equals(y)should returntrueif and only ify.equals(x)returnstrue.
- It is transitive: for any non-null reference values
     x,y, andz, ifx.equals(y)returnstrueandy.equals(z)returnstrue, thenx.equals(z)should returntrue.
- It is consistent: for any non-null reference values
     xandy, multiple invocations ofx.equals(y)consistently returntrueor consistently returnfalse, provided no information used inequalscomparisons on the objects is modified.
- For any non-null reference value x,x.equals(null)should returnfalse.
 The equalsmethod for classObjectimplements the most discriminating possible equivalence relation on objects; that is, for any non-null reference valuesxandy, this method returnstrueif and only ifxandyrefer to the same object (x == yhas the valuetrue).Note that it is generally necessary to override the hashCodemethod whenever this method is overridden, so as to maintain the general contract for thehashCodemethod, which states that equal objects must have equal hash codes.
- It is reflexive: for any non-null reference value
     
 - 
hashCodepublic int hashCode() Description copied from class:java.lang.ObjectReturns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided byHashMap.The general contract of hashCodeis:- Whenever it is invoked on the same object more than once during
     an execution of a Java application, the hashCodemethod must consistently return the same integer, provided no information used inequalscomparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.
- If two objects are equal according to the equals(Object)method, then calling thehashCodemethod on each of the two objects must produce the same integer result.
- It is not required that if two objects are unequal
     according to the Object.equals(java.lang.Object)method, then calling thehashCodemethod on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
 As much as is reasonably practical, the hashCode method defined by class Objectdoes return distinct integers for distinct objects. (The hashCode may or may not be implemented as some function of an object's memory address at some point in time.)- Specified by:
- hashCodein interface- Table<R,C,V>
- Overrides:
- hashCodein class- Object
- Returns:
- a hash code value for this object.
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
- Whenever it is invoked on the same object more than once during
     an execution of a Java application, the 
 
- 
 
-