public class NQuadsParser extends NTriplesParser
N-Quads RDF format, extending the Rio N-Triples parser. A
 specification of N-Quads can be found here. This parser is not
 thread-safe, therefore its public methods are synchronized.RDFParser.DatatypeHandling| Modifier and Type | Field and Description | 
|---|---|
| protected Resource | context | 
lineNo, object, predicate, reader, subjectrdfHandler, valueFactory| Constructor and Description | 
|---|
| NQuadsParser() | 
| Modifier and Type | Method and Description | 
|---|---|
| RDFFormat | getRDFFormat()Gets the RDF format that this parser can parse. | 
| void | parse(InputStream inputStream,
     String baseURI)Implementation of the parse(InputStream, String) method defined in the RDFParser interface. | 
| void | parse(Reader reader,
     String baseURI)Implementation of the parse(Reader, String) method defined in the RDFParser interface. | 
| protected int | parseContext(int c) | 
assertLineTerminates, clear, createLiteral, createURI, getSupportedSettings, parseNodeID, parseObject, parsePredicate, parseSubject, parseUriRef, peekCodePoint, readCodePoint, reportError, reportError, reportFatalError, reportFatalError, reportWarning, skipLine, skipToEndOfLine, skipWhitespace, throwEOFException, unreadclearBNodeIDMap, createBNode, createBNode, createLiteral, createLiteral, createNode, createNode, createStatement, createStatement, datatypeHandling, getNamespace, getParseErrorListener, getParseLocationListener, getParserConfig, getRDFHandler, initializeNamespaceTableFromConfiguration, preserveBNodeIDs, reportError, reportError, reportError, reportFatalError, reportFatalError, reportFatalError, reportLocation, reportWarning, resolveURI, set, setBaseURI, setBaseURI, setDatatypeHandling, setNamespace, setParseErrorListener, setParseLocationListener, setParserConfig, setPreserveBNodeIDs, setRDFHandler, setStopAtFirstError, setValueFactory, setVerifyData, stopAtFirstError, verifyDataprotected Resource context
public RDFFormat getRDFFormat()
RDFParsergetRDFFormat in interface RDFParsergetRDFFormat in class NTriplesParserpublic void parse(InputStream inputStream, String baseURI) throws IOException, RDFParseException, RDFHandlerException
NTriplesParserparse in interface RDFParserparse in class NTriplesParserinputStream - The InputStream from which to read the data, must not be null. The InputStream is
                supposed to contain 7-bit US-ASCII characters, as per the N-Triples specification.baseURI - The URI associated with the data in the InputStream, must not be null.IOException - If an I/O error occurred while data was read from the InputStream.RDFParseException - If the parser has found an unrecoverable parse error.RDFHandlerException - If the configured statement handler encountered an unrecoverable error.public void parse(Reader reader, String baseURI) throws IOException, RDFParseException, RDFHandlerException
NTriplesParserparse in interface RDFParserparse in class NTriplesParserreader - The Reader from which to read the data, must not be null.baseURI - The URI associated with the data in the Reader, must not be null.IOException - If an I/O error occurred while data was read from the InputStream.RDFParseException - If the parser has found an unrecoverable parse error.RDFHandlerException - If the configured statement handler encountered an unrecoverable error.protected int parseContext(int c)
                    throws IOException,
                           RDFParseException
IOExceptionRDFParseExceptionCopyright © 2015-2020 Eclipse Foundation. All Rights Reserved.