|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RDFParseException | |
|---|---|
| org.openrdf.http.client | |
| org.openrdf.repository | The Repository API: the main API for handling Sesame repositories. |
| org.openrdf.repository.base | |
| org.openrdf.repository.contextaware | |
| org.openrdf.rio | General classes and interfaces for RDF parsers and RDF writers. |
| org.openrdf.rio.helpers | Provides helpers classes for Rio. |
| org.openrdf.rio.ntriples | Parser and writer for RDF in N-Triples format. |
| org.openrdf.rio.rdfxml | Parser and writer for XML-serialized RDF. |
| org.openrdf.rio.trig | Parser and writer for RDF in TriG format. |
| org.openrdf.rio.trix | Parser and writer for RDF in TriX format. |
| org.openrdf.rio.turtle | Parser and writer for RDF in Turtle format. |
| Uses of RDFParseException in org.openrdf.http.client |
|---|
| Methods in org.openrdf.http.client that throw RDFParseException | |
|---|---|
void |
HTTPClient.upload(InputStream contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
Resource... contexts)
|
void |
HTTPClient.upload(Reader contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
Resource... contexts)
|
protected void |
HTTPClient.upload(org.apache.commons.httpclient.methods.RequestEntity reqEntity,
String baseURI,
boolean overwrite,
Resource... contexts)
|
| Uses of RDFParseException in org.openrdf.repository |
|---|
| Methods in org.openrdf.repository that throw RDFParseException | |
|---|---|
void |
RepositoryConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from the specified file to a specific contexts in the repository. |
void |
RepositoryConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from an InputStream to the repository, optionally to one or more named contexts. |
void |
RepositoryConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from a Reader to the repository, optionally to one or more named contexts. |
void |
RepositoryConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts. |
| Uses of RDFParseException in org.openrdf.repository.base |
|---|
| Methods in org.openrdf.repository.base that throw RDFParseException | |
|---|---|
void |
RepositoryConnectionWrapper.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
protected void |
RepositoryConnectionBase.addInputStreamOrReader(Object inputStreamOrReader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds the data that can be read from the supplied InputStream or Reader to this repository. |
| Uses of RDFParseException in org.openrdf.repository.contextaware |
|---|
| Methods in org.openrdf.repository.contextaware that throw RDFParseException | |
|---|---|
void |
ContextAwareConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
ContextAwareConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
ContextAwareConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
ContextAwareConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
| Uses of RDFParseException in org.openrdf.rio |
|---|
| Methods in org.openrdf.rio that throw RDFParseException | |
|---|---|
static void |
Rio.main(String[] args)
|
void |
RDFParser.parse(InputStream in,
String baseURI)
Parses the data from the supplied InputStream, using the supplied baseURI to resolve any relative URI references. |
void |
RDFParser.parse(Reader reader,
String baseURI)
Parses the data from the supplied Reader, using the supplied baseURI to resolve any relative URI references. |
| Uses of RDFParseException in org.openrdf.rio.helpers |
|---|
| Methods in org.openrdf.rio.helpers that throw RDFParseException | |
|---|---|
protected BNode |
RDFParserBase.createBNode()
Creates a new BNode object. |
protected BNode |
RDFParserBase.createBNode(String nodeID)
Creates a BNode object for the specified identifier. |
protected Literal |
RDFParserBase.createLiteral(String label,
String lang,
URI datatype)
Creates a Literal object with the supplied parameters. |
protected Statement |
RDFParserBase.createStatement(Resource subj,
URI pred,
Value obj)
Creates a new Statement object with the supplied components. |
protected Statement |
RDFParserBase.createStatement(Resource subj,
URI pred,
Value obj,
Resource context)
Creates a new Statement object with the supplied components. |
protected URI |
RDFParserBase.createURI(String uri)
Creates a URI object for the specified URI-string. |
protected void |
RDFParserBase.reportError(String msg)
Reports an error to the registered ParseErrorListener, if any. |
protected void |
RDFParserBase.reportError(String msg,
int lineNo,
int columnNo)
Reports an error with associated line- and column number to the registered ParseErrorListener, if any. |
protected void |
RDFParserBase.reportFatalError(Exception e)
Reports a fatal error to the registered ParseErrorListener, if any, and throws a ParseException afterwards. |
protected void |
RDFParserBase.reportFatalError(Exception e,
int lineNo,
int columnNo)
Reports a fatal error with associated line- and column number to the registered ParseErrorListener, if any, and throws a ParseException wrapped the supplied exception afterwards. |
protected void |
RDFParserBase.reportFatalError(String msg)
Reports a fatal error to the registered ParseErrorListener, if any, and throws a ParseException afterwards. |
protected void |
RDFParserBase.reportFatalError(String msg,
int lineNo,
int columnNo)
Reports a fatal error with associated line- and column number to the registered ParseErrorListener, if any, and throws a ParseException afterwards. |
protected URI |
RDFParserBase.resolveURI(String uriSpec)
Resolves a URI-string against the base URI and creates a URI
object for it. |
| Uses of RDFParseException in org.openrdf.rio.ntriples |
|---|
| Methods in org.openrdf.rio.ntriples that throw RDFParseException | |
|---|---|
protected Literal |
NTriplesParser.createLiteral(String label,
String lang,
String datatype)
|
protected URI |
NTriplesParser.createURI(String uri)
|
void |
NTriplesParser.parse(InputStream in,
String baseURI)
Implementation of the parse(InputStream, String) method defined in the RDFParser interface. |
void |
NTriplesParser.parse(Reader reader,
String baseURI)
Implementation of the parse(Reader, String) method defined in the RDFParser interface. |
protected void |
NTriplesParser.reportError(String msg)
Overrides RDFParserBase.reportError(String), adding line number
information to the error. |
protected void |
NTriplesParser.reportFatalError(Exception e)
Overrides RDFParserBase.reportFatalError(Exception), adding line
number information to the error. |
protected void |
NTriplesParser.reportFatalError(String msg)
Overrides RDFParserBase.reportFatalError(String), adding line
number information to the error. |
| Uses of RDFParseException in org.openrdf.rio.rdfxml |
|---|
| Methods in org.openrdf.rio.rdfxml that throw RDFParseException | |
|---|---|
protected BNode |
RDFXMLParser.createBNode(String nodeID)
|
void |
RDFXMLParser.parse(InputStream in,
String baseURI)
Parses the data from the supplied InputStream, using the supplied baseURI to resolve any relative URI references. |
void |
RDFXMLParser.parse(Reader reader,
String baseURI)
Parses the data from the supplied Reader, using the supplied baseURI to resolve any relative URI references. |
protected void |
RDFXMLParser.reportError(String msg)
Overrides RDFParserBase.reportError(String), adding line- and
column number information to the error. |
protected void |
RDFXMLParser.reportFatalError(Exception e)
Overrides RDFParserBase.reportFatalError(Exception), adding line-
and column number information to the error. |
protected void |
RDFXMLParser.reportFatalError(String msg)
Overrides RDFParserBase.reportFatalError(String), adding line-
and column number information to the error. |
| Uses of RDFParseException in org.openrdf.rio.trig |
|---|
| Methods in org.openrdf.rio.trig that throw RDFParseException | |
|---|---|
protected void |
TriGParser.parseGraph()
|
protected void |
TriGParser.parseStatement()
|
protected void |
TriGParser.reportStatement(Resource subj,
URI pred,
Value obj)
|
| Uses of RDFParseException in org.openrdf.rio.trix |
|---|
| Methods in org.openrdf.rio.trix that throw RDFParseException | |
|---|---|
void |
TriXParser.parse(InputStream in,
String baseURI)
|
void |
TriXParser.parse(Reader reader,
String baseURI)
|
| Uses of RDFParseException in org.openrdf.rio.turtle |
|---|
| Methods in org.openrdf.rio.turtle that throw RDFParseException | |
|---|---|
void |
TurtleParser.parse(InputStream in,
String baseURI)
Implementation of the parse(InputStream, String) method defined in the RDFParser interface. |
void |
TurtleParser.parse(Reader reader,
String baseURI)
Implementation of the parse(Reader, String) method defined in the RDFParser interface. |
protected void |
TurtleParser.parseBase()
|
protected Resource |
TurtleParser.parseCollection()
Parses a collection, e.g. |
protected void |
TurtleParser.parseDirective()
|
protected Resource |
TurtleParser.parseImplicitBlank()
Parses an implicit blank node. |
protected String |
TurtleParser.parseLongString()
Parses a """long string""". |
protected BNode |
TurtleParser.parseNodeID()
Parses a blank node ID, e.g. |
protected Literal |
TurtleParser.parseNumber()
|
protected void |
TurtleParser.parseObject()
|
protected void |
TurtleParser.parseObjectList()
|
protected URI |
TurtleParser.parsePredicate()
|
protected void |
TurtleParser.parsePredicateObjectList()
|
protected void |
TurtleParser.parsePrefixID()
|
protected Value |
TurtleParser.parseQNameOrBoolean()
Parses qnames and boolean values, which have equivalent starting characters. |
protected Literal |
TurtleParser.parseQuotedLiteral()
Parses a quoted string, optionally followed by a language tag or datatype. |
protected String |
TurtleParser.parseQuotedString()
Parses a quoted string, which is either a "normal string" or a """long string""". |
protected void |
TurtleParser.parseStatement()
|
protected String |
TurtleParser.parseString()
Parses a "normal string". |
protected void |
TurtleParser.parseSubject()
|
protected void |
TurtleParser.parseTriples()
|
protected URI |
TurtleParser.parseURI()
|
protected Value |
TurtleParser.parseValue()
Parses an RDF value. |
protected void |
TurtleParser.reportError(String msg)
Overrides RDFParserBase.reportError(String), adding line number
information to the error. |
protected void |
TurtleParser.reportFatalError(Exception e)
Overrides RDFParserBase.reportFatalError(Exception), adding line
number information to the error. |
protected void |
TurtleParser.reportFatalError(String msg)
Overrides RDFParserBase.reportFatalError(String), adding line
number information to the error. |
protected void |
TurtleParser.reportStatement(Resource subj,
URI pred,
Value obj)
|
protected void |
TurtleParser.throwEOFException()
|
protected void |
TurtleParser.verifyCharacter(int c,
String expected)
Verifies that the supplied character c is one of the expected characters specified in expected. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||