Package org.javlo.utils
Class ListMapValueValue<K>
- java.lang.Object
-
- org.javlo.utils.ListMapValueValue<K>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
ListMapValueValue.Entry
-
Constructor Summary
Constructors Constructor Description ListMapValueValue(Collection<K> components)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<K,K>>
entrySet()
K
get(Object key)
boolean
isEmpty()
Set<K>
keySet()
static void
main(String[] args)
K
put(K key, K value)
void
putAll(Map<? extends K,? extends K> m)
K
remove(Object key)
int
size()
Collection<K>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Constructor Detail
-
ListMapValueValue
public ListMapValueValue(Collection<K> components)
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<K,K>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<K,K>
-
main
public static void main(String[] args)
-
-