public final class NamedSPILoader<S extends NamedSPILoader.NamedSPI> extends Object implements Iterable<S>
| Modifier and Type | Class and Description | 
|---|---|
static interface  | 
NamedSPILoader.NamedSPI
Interface to support  
lookup(String) by name. | 
| Constructor and Description | 
|---|
NamedSPILoader(Class<S> clazz)  | 
NamedSPILoader(Class<S> clazz,
              ClassLoader classloader)  | 
| Modifier and Type | Method and Description | 
|---|---|
Set<String> | 
availableServices()  | 
static void | 
checkServiceName(String name)
Validates that a service name meets the requirements of  
NamedSPILoader.NamedSPI | 
Iterator<S> | 
iterator()  | 
S | 
lookup(String name)  | 
void | 
reload(ClassLoader classloader)
Reloads the internal SPI list from the given  
ClassLoader. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic NamedSPILoader(Class<S> clazz, ClassLoader classloader)
public void reload(ClassLoader classloader)
ClassLoader.
 Changes to the service list are visible after the method ends, all
 iterators (iterator(),...) stay consistent. 
 
 NOTE: Only new service providers are added, existing ones are never removed or replaced.
This method is expensive and should only be called for discovery of new service providers on the given classpath/classloader!
public static void checkServiceName(String name)
NamedSPILoader.NamedSPICopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.