public class MultiMapKeyToSet<S,T> extends Object
Constructor | Description |
---|---|
MultiMapKeyToSet() |
A multimap from key to a set of values.
|
Modifier and Type | Method | Description |
---|---|---|
Set<Map.Entry<S,Set<T>>> |
entrySet() |
Get the entry set from the underlying map.
|
Set<T> |
get(S key) |
Get a value from the multimap.
|
Map<S,Set<T>> |
getRawMap() |
Get the underlying map.
|
boolean |
isEmpty() |
Return true if this map is empty.
|
void |
put(S key,
T value) |
Put a value into the multimap.
|
Copyright © 2018. All rights reserved.