Class IterableRegistry<T>
- java.lang.Object
-
- org.wildfly.extension.microprofile.config.smallrye.IterableRegistry<T>
-
-
Constructor Summary
Constructors Constructor Description IterableRegistry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<T>iterator()voidregister(String name, T object)Registers the specified object with this registryvoidunregister(String name)Unregisters the specified object from this registry-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
register
public void register(String name, T object)
Description copied from interface:RegistryRegisters the specified object with this registry
-
unregister
public void unregister(String name)
Description copied from interface:RegistryUnregisters the specified object from this registry- Specified by:
unregisterin interfaceRegistry<T>- Parameters:
name- the object name
-
-