Class AbstractRDFHandler

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void end()
      Notification that processing has finished
      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

      • AbstractRDFHandler

        public AbstractRDFHandler()
    • 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
      • end

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