public interface IRegistry<K,V>
extends java.lang.Iterable<V>
Modifier and Type | Method and Description |
---|---|
java.util.Set<K> |
getKeys()
Gets all the keys recognized by this registry.
|
V |
getObject(K name) |
void |
putObject(K key,
V value)
Register an object on this registry.
|