Class ServiceLoaderIterator<E>
- java.lang.Object
-
- org.apache.commons.compress.utils.ServiceLoaderIterator<E>
-
- Type Parameters:
E- The service to load
- All Implemented Interfaces:
java.util.Iterator<E>
@Deprecated public class ServiceLoaderIterator<E> extends java.lang.Object implements java.util.Iterator<E>
Deprecated.No longer needed.Iterates all services for a given class through the standardServiceLoadermechanism.- Since:
- 1.13
-
-
Constructor Summary
Constructors Constructor Description ServiceLoaderIterator(java.lang.Class<E> service)Deprecated.Constructs a new instance.ServiceLoaderIterator(java.lang.Class<E> service, java.lang.ClassLoader classLoader)Deprecated.Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanhasNext()Deprecated.Enext()Deprecated.voidremove()Deprecated.
-
-
-
Constructor Detail
-
ServiceLoaderIterator
public ServiceLoaderIterator(java.lang.Class<E> service)
Deprecated.Constructs a new instance.- Parameters:
service- The interface or abstract class representing the service.
-
ServiceLoaderIterator
public ServiceLoaderIterator(java.lang.Class<E> service, java.lang.ClassLoader classLoader)
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, ornullif the system class loader (or, failing that, the bootstrap class loader) is to be used
-
-