public interface RegistryStore<E>
| Modifier and Type | Method and Description |
|---|---|
E |
computeIfAbsent(String key,
Function<? super String,? extends E> mappingFunction) |
boolean |
exists(String name) |
Optional<E> |
find(String key) |
E |
putIfAbsent(String key,
E value) |
Optional<E> |
remove(String name) |
Optional<E> |
replace(String name,
E newEntry) |
Collection<E> |
values() |
boolean exists(String name)
Collection<E> values()
Copyright © 2022. All rights reserved.