Class MultiMapKeyToSet<S,T>
- java.lang.Object
-
- io.github.lukehutch.fastclasspathscanner.utils.MultiMapKeyToSet<S,T>
-
public class MultiMapKeyToSet<S,T> extends Object
A multimap from key to a set of values.
-
-
Constructor Summary
Constructors Constructor Description MultiMapKeyToSet()
A multimap from key to a set of values.
-
Method Summary
All Methods Instance Methods Concrete Methods 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.
-