Class SingletonIterator<E>

java.lang.Object
org.eclipse.rdf4j.common.iterator.SingletonIterator<E>
All Implemented Interfaces:
Iterator<E>

public class SingletonIterator<E> extends Object implements Iterator<E>
An iterator that contains exactly one element.
  • Constructor Details Link icon

    • SingletonIterator Link icon

      public SingletonIterator(E value)
      Creates a new EmptyIterator.
  • Method Details Link icon

    • hasNext Link icon

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

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

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