Class ServiceLoaderIterator<E>
java.lang.Object
org.apache.commons.compress.utils.ServiceLoaderIterator<E>
- Type Parameters:
E
- The service to load
- All Implemented Interfaces:
Iterator<E>
Deprecated.
No longer needed.
Iterates all services for a given class through the standard
ServiceLoader
mechanism.- Since:
- 1.13
-
Constructor Summary
ConstructorsConstructorDescriptionServiceLoaderIterator
(Class<E> service) Deprecated.Constructs a new instance.ServiceLoaderIterator
(Class<E> service, ClassLoader classLoader) Deprecated.Constructs a new instance. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
ServiceLoaderIterator
Deprecated.Constructs a new instance.- Parameters:
service
- The interface or abstract class representing the service.
-
ServiceLoaderIterator
Deprecated.Constructs a new instance.- Parameters:
service
- The interface or abstract class representing the service.classLoader
- The class loader to be used to load provider-configuration files and provider classes, ornull
if the system class loader (or, failing that, the bootstrap class loader) is to be used
-
-
Method Details