Class DelegatingRDFHandler

java.lang.Object
com.stardog.stark.io.DelegatingRDFHandler
All Implemented Interfaces:
RDFHandler

public class DelegatingRDFHandler extends Object implements RDFHandler
Since:
7.1
Author:
Pavel Klinov
  • Field Details

    • mDelegate

      protected final RDFHandler mDelegate
  • Constructor Details

    • DelegatingRDFHandler

      public DelegatingRDFHandler(RDFHandler theDelegate)
  • Method Details

    • start

      public void start()
      Description copied from interface: RDFHandler
      Notification that the processing has started
      Specified by:
      start in interface RDFHandler
    • namespace

      public void namespace(@Nonnull String thePrefix, @Nonnull String theIRI)
      Description copied from interface: RDFHandler
      Event for when a namespace was encountered
      Specified by:
      namespace in interface RDFHandler
      Parameters:
      thePrefix - the namespace prefix
      theIRI - the associated IRI
    • handle

      public void handle(@Nonnull Statement theStmt)
      Description copied from interface: RDFHandler
      Event for when a statement was encountered
      Specified by:
      handle in interface RDFHandler
      Parameters:
      theStmt - the statement
    • end

      public void end()
      Description copied from interface: RDFHandler
      Notification that processing has finished
      Specified by:
      end in interface RDFHandler