Class MultiMapKeyToList<S,T>
- java.lang.Object
-
- io.github.lukehutch.fastclasspathscanner.utils.MultiMapKeyToList<S,T>
-
public class MultiMapKeyToList<S,T> extends Object
A multimap from key to a list of values.
-
-
Constructor Summary
Constructors Constructor Description MultiMapKeyToList()A multimap from key to a list of values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Map.Entry<S,List<T>>>entrySet()Get the entry set from the underlying map.List<T>get(S key)Get a value from the multimap.Map<S,List<T>>getRawMap()Get the underlying map.booleanisEmpty()Return true if this map is empty.voidput(S key, T value)Put a value into the multimap.
-