boolean |
Table.contains(@Nullable java.lang.Object rowKey,
@Nullable java.lang.Object columnKey) |
Returns true if the table contains a mapping with the specified row and column keys.
|
boolean |
Table.contains(@Nullable java.lang.Object rowKey,
@Nullable java.lang.Object columnKey) |
Returns true if the table contains a mapping with the specified row and column keys.
|
boolean |
Table.containsColumn(@Nullable java.lang.Object columnKey) |
Returns true if the table contains a mapping with the specified column.
|
boolean |
Multimap.containsEntry(@Nullable java.lang.Object key,
@Nullable java.lang.Object value) |
Returns true if this multimap contains at least one key-value pair with the key
key and the value value .
|
boolean |
Multimap.containsEntry(@Nullable java.lang.Object key,
@Nullable java.lang.Object value) |
Returns true if this multimap contains at least one key-value pair with the key
key and the value value .
|
boolean |
Multimap.containsKey(@Nullable java.lang.Object key) |
Returns true if this multimap contains at least one key-value pair with the key
key .
|
boolean |
Table.containsRow(@Nullable java.lang.Object rowKey) |
Returns true if the table contains a mapping with the specified row key.
|
boolean |
Multimap.containsValue(@Nullable java.lang.Object value) |
Returns true if this multimap contains at least one key-value pair with the value
value .
|
boolean |
Table.containsValue(@Nullable java.lang.Object value) |
Returns true if the table contains a mapping with the specified value.
|
int |
Multiset.count(@Nullable java.lang.Object element) |
Returns the number of occurrences of an element in this multiset (the count of the
element).
|
@Nullable V |
Table.get(@Nullable java.lang.Object rowKey,
@Nullable java.lang.Object columnKey) |
Returns the value corresponding to the given row and column keys, or null if no such
mapping exists.
|
@Nullable V |
Table.get(@Nullable java.lang.Object rowKey,
@Nullable java.lang.Object columnKey) |
Returns the value corresponding to the given row and column keys, or null if no such
mapping exists.
|
boolean |
Multimap.remove(@Nullable java.lang.Object key,
@Nullable java.lang.Object value) |
Removes a single key-value pair with the key key and the value value from this
multimap, if such exists.
|
boolean |
Multimap.remove(@Nullable java.lang.Object key,
@Nullable java.lang.Object value) |
Removes a single key-value pair with the key key and the value value from this
multimap, if such exists.
|
int |
Multiset.remove(@Nullable java.lang.Object element,
int occurrences) |
Removes a number of occurrences of the specified element from this multiset.
|
@Nullable V |
Table.remove(@Nullable java.lang.Object rowKey,
@Nullable java.lang.Object columnKey) |
Removes the mapping, if any, associated with the given keys.
|
@Nullable V |
Table.remove(@Nullable java.lang.Object rowKey,
@Nullable java.lang.Object columnKey) |
Removes the mapping, if any, associated with the given keys.
|
java.util.Collection<V> |
Multimap.removeAll(@Nullable java.lang.Object key) |
Removes all values associated with the key key .
|