Class ForwardingRDFHandler

  • All Implemented Interfaces:
    RDFHandler
    Direct Known Subclasses:
    TransformingRDFHandler

    public class ForwardingRDFHandler
    extends java.lang.Object
    implements RDFHandler

    RDFHandler base implementation that will decorate a base handler

    Since:
    1.0
    Version:
    1.0
    Author:
    Michael Grove
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void end()
      Notification that processing has finished
      void handle​(Statement theStmt)
      Event for when a statement was encountered
      void namespace​(java.lang.String thePrefix, java.lang.String theIRI)
      Event for when a namespace was encountered
      void start()
      Notification that the processing has started
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ForwardingRDFHandler

        public ForwardingRDFHandler​(RDFHandler theHandler)
    • Method Detail

      • start

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

        public void namespace​(@Nonnull
                              java.lang.String thePrefix,
                              @Nonnull
                              java.lang.String theIRI)
        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)
        Event for when a statement was encountered
        Specified by:
        handle in interface RDFHandler
        Parameters:
        theStmt - the statement
      • end

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