Class ReaderRDFXML_ARP1

java.lang.Object
org.apache.jena.riot.lang.rdfxml.ReaderRDFXML_ARP1
All Implemented Interfaces:
ReaderRIOT

@Deprecated(forRemoval=true) public class ReaderRDFXML_ARP1 extends Object implements ReaderRIOT
Deprecated, for removal: This API element is subject to removal in a future version.
RDF/XML.

LEGACY

Uses ARP1 - the version of ARP from Jena 4.7.0 to Jena 4.10.0.

Replaced at Jena 5 by RRX.

See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static final boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    read(InputStream in, String baseURI, ContentType ct, StreamRDF output, Context context)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Read from an InputStream and output RDF on the StreamRDF.
    void
    read(Reader reader, String baseURI, ContentType ct, StreamRDF output, Context context)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Read from an InputStream and output RDF on the StreamRDF.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • factory

      public static ReaderRIOTFactory factory
      Deprecated, for removal: This API element is subject to removal in a future version.
    • RiotUniformCompatibility

      public static final boolean RiotUniformCompatibility
      Deprecated, for removal: This API element is subject to removal in a future version.
      See Also:
  • Constructor Details

    • ReaderRDFXML_ARP1

      public ReaderRDFXML_ARP1(ParserProfile parserProfile)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • read

      public void read(InputStream in, String baseURI, ContentType ct, StreamRDF output, Context context)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: ReaderRIOT
      Read from an InputStream and output RDF on the StreamRDF.
      Specified by:
      read in interface ReaderRIOT
      Parameters:
      in - InputStream
      baseURI - Base URI (or null)
      ct - Content-Type if available. Routing to the right parser will have already been done so this only useful to get addition Content-Type information or if this ReaderRIOT can handle multiple media types.
      output - Destination for the parser output.
      context - Environment settings.
    • read

      public void read(Reader reader, String baseURI, ContentType ct, StreamRDF output, Context context)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: ReaderRIOT
      Read from an InputStream and output RDF on the StreamRDF.
      Specified by:
      read in interface ReaderRIOT
      Parameters:
      reader - Reader. InputStreams are preferred because Reader do not allow RIOT to set the character set.
      baseURI - Base URI (or null)
      ct - Content-Type if available. Routing to the right parser will have already been done so this only useful to get addition Content-Type information or if this ReaderRIOT can handle multiple media types.
      output - Destination for the parser output.
      context - Environment settings.