public interface RegistryStore<E>
E
computeIfAbsent(String key, Function<? super String,? extends E> mappingFunction)
Optional<E>
find(String key)
putIfAbsent(String key, E value)
remove(String name)
replace(String name, E newEntry)
Collection<E>
values()
E computeIfAbsent(String key, Function<? super String,? extends E> mappingFunction)
E putIfAbsent(String key, E value)
Optional<E> find(String key)
Optional<E> remove(String name)
Optional<E> replace(String name, E newEntry)
Collection<E> values()
Copyright © 2021. All rights reserved.