Package org.skriptlang.skript.util
Interface Registry<T>
- Type Parameters:
- T- The type of elements stored in a registry.
- All Superinterfaces:
- Iterable<T>
- All Known Subinterfaces:
- SyntaxRegistry
- All Known Implementing Classes:
- FunctionRegistry,- PropertyRegistry
A registry maintains a collection of elements.
 It is up to individual implementations as to how they may be modified.
- 
Method SummaryMethods inherited from interface java.lang.IterableforEach, spliterator
- 
Method Details- 
elementsCollection<T> elements()- Returns:
- A collection of all elements in this registry.
 
- 
iteratorBy default, this is a wrapper forelements().iterator().
 
-