Class 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
    • Constructor Detail

      • ServiceLoaderIterator

        public ServiceLoaderIterator​(Class<E> service)
      • ServiceLoaderIterator

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

      • 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>