Class PatternIterator<S extends Statement>

java.lang.Object
org.eclipse.rdf4j.model.util.PatternIterator<S>
All Implemented Interfaces:
Iterator<S>

public class PatternIterator<S extends Statement> extends Object implements Iterator<S>
Excludes an Iterator based on a given basic graph pattern.
  • Constructor Details Link icon

  • Method Details Link icon

    • hasNext Link icon

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

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

      public void remove()
      Specified by:
      remove in interface Iterator<S extends Statement>
    • accept Link icon

      protected boolean accept(S st)
      Tests whether or not the specified statement should be returned by this iterator. All objects from the wrapped iterator pass through this method in the same order as they are coming from the wrapped iterator.
      Parameters:
      st - The statement to be tested.
      Returns:
      true if the object should be returned, false otherwise.