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 public class ServiceLoaderIterator<E> extends Object implements Iterator<E>
Deprecated.
No longer needed.
Iterates all services for a given class through the standard ServiceLoader mechanism.
Since:
1.13
  • Field Details

    • nextServiceLoader

      private E nextServiceLoader
      Deprecated.
    • service

      private final Class<E> service
      Deprecated.
    • serviceLoaderIterator

      private final Iterator<E> serviceLoaderIterator
      Deprecated.
  • Constructor Details

    • ServiceLoaderIterator

      public ServiceLoaderIterator(Class<E> service)
      Deprecated.
      Constructs a new instance.
      Parameters:
      service - The interface or abstract class representing the service.
    • ServiceLoaderIterator

      public ServiceLoaderIterator(Class<E> service, 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, or null if the system class loader (or, failing that, the bootstrap class loader) is to be used
  • Method Details

    • hasNext

      public boolean hasNext()
      Deprecated.
      Specified by:
      hasNext in interface Iterator<E>
    • next

      public E next()
      Deprecated.
      Specified by:
      next in interface Iterator<E>
    • remove

      public void remove()
      Deprecated.
      Specified by:
      remove in interface Iterator<E>