-
- All Implemented Interfaces:
-
java.util.Map
public class DeviceComponentCache implements Map<String, DeviceComponent>
-
-
Constructor Summary
Constructors Constructor Description DeviceComponentCache()
-
Method Summary
Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String, DeviceComponent>>entrySet()DeviceComponentget(Object key)booleanisEmpty()Set<String>keySet()DeviceComponentput(String key, DeviceComponent value)voidputAll(@NonNull() Map<out String, out DeviceComponent> map)DeviceComponentremove(Object key)intsize()Collection<DeviceComponent>values()-
Methods inherited from class java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, copyOf, entry, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, of, ofEntries, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
clear
void clear()
-
containsKey
boolean containsKey(Object key)
-
containsValue
boolean containsValue(Object value)
-
get
@Nullable() DeviceComponent get(Object key)
-
isEmpty
boolean isEmpty()
-
put
DeviceComponent put(String key, DeviceComponent value)
-
putAll
void putAll(@NonNull() Map<out String, out DeviceComponent> map)
-
remove
DeviceComponent remove(Object key)
-
size
int size()
-
values
@NonNull() Collection<DeviceComponent> values()
-
-
-
-