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>

public class ServiceLoaderIterator<E> extends Object implements Iterator<E>
Iterates all services for a given class through the standard ServiceLoader mechanism.
Since:
1.13
  • Field Details

    • nextServiceLoader

      private E nextServiceLoader
    • service

      private final Class<E> service
    • serviceLoaderIterator

      private final Iterator<E> serviceLoaderIterator
  • Constructor Details

    • ServiceLoaderIterator

      public ServiceLoaderIterator(Class<E> service)
    • ServiceLoaderIterator

      public ServiceLoaderIterator(Class<E> service, ClassLoader classLoader)
  • Method Details

    • hasNext

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

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

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