RDFParser.DatatypeHandling| Modifier and Type | Field and Description |
|---|---|
protected RDFHandler |
rdfHandler
The RDFHandler that will handle the parsed RDF.
|
protected ValueFactory |
valueFactory
The ValueFactory to use for creating RDF model objects.
|
| Constructor and Description |
|---|
RDFParserBase()
Creates a new RDFParserBase that will use a
ValueFactoryImpl to
create RDF model objects. |
RDFParserBase(ValueFactory valueFactory)
Creates a new RDFParserBase that will use the supplied ValueFactory to
create RDF model objects.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
clear()
Clears any information that has been collected while parsing.
|
protected void |
clearBNodeIDMap()
Deprecated.
Map is no longer used.
|
protected BNode |
createBNode()
Creates a new
BNode object. |
protected BNode |
createBNode(String nodeID)
Creates a
BNode object for the specified identifier. |
protected Literal |
createLiteral(String label,
String lang,
URI datatype)
Creates a
Literal object with the supplied parameters. |
protected Literal |
createLiteral(String label,
String lang,
URI datatype,
int lineNo,
int columnNo)
Creates a
Literal object with the supplied parameters, using the
lineNo and columnNo to enhance error messages or exceptions that may be
generated during the creation of the literal. |
protected Statement |
createStatement(Resource subj,
URI pred,
Value obj)
Creates a new
Statement object with the supplied components. |
protected Statement |
createStatement(Resource subj,
URI pred,
Value obj,
Resource context)
Creates a new
Statement object with the supplied components. |
protected URI |
createURI(String uri)
Creates a
URI object for the specified URI-string. |
RDFParser.DatatypeHandling |
datatypeHandling()
Deprecated.
|
protected String |
getNamespace(String prefix)
Gets the namespace that is associated with the specified prefix or throws
an
RDFParseException. |
ParseErrorListener |
getParseErrorListener() |
ParseLocationListener |
getParseLocationListener() |
ParserConfig |
getParserConfig()
Retrieves the current parser configuration as a single object.
|
RDFHandler |
getRDFHandler() |
Collection<RioSetting<?>> |
getSupportedSettings() |
boolean |
preserveBNodeIDs() |
protected void |
reportError(Exception e,
int lineNo,
int columnNo,
RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered
ParseErrorListener, if the given setting has been set to true.
|
protected void |
reportError(String msg,
int lineNo,
int columnNo,
RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered
ParseErrorListener, if the given setting has been set to true.
|
protected void |
reportError(String msg,
RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered
ParseErrorListener, if the given setting has been set to true.
|
protected void |
reportFatalError(Exception e)
Reports a fatal error to the registered ParseErrorListener, if any, and
throws a ParseException afterwards.
|
protected void |
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 |
reportFatalError(String msg)
Reports a fatal error to the registered ParseErrorListener, if any, and
throws a ParseException afterwards.
|
protected void |
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 void |
reportLocation(int lineNo,
int columnNo)
Reports the specified line- and column number to the registered
ParseLocationListener, if any. |
protected void |
reportWarning(String msg)
Reports a warning to the registered ParseErrorListener, if any.
|
protected void |
reportWarning(String msg,
int lineNo,
int columnNo)
Reports a warning with associated line- and column number to the
registered ParseErrorListener, if any.
|
protected URI |
resolveURI(String uriSpec)
Resolves a URI-string against the base URI and creates a
URI
object for it. |
protected void |
setBaseURI(ParsedURI baseURI)
Sets the base URI for resolving relative URIs.
|
protected void |
setBaseURI(String uriSpec)
Parses and normalizes the supplied URI-string and sets it as the base URI
for resolving relative URIs.
|
void |
setDatatypeHandling(RDFParser.DatatypeHandling datatypeHandling)
Sets the datatype handling mode.
|
protected void |
setNamespace(String prefix,
String namespace)
Associates the specified prefix to the specified namespace.
|
void |
setParseErrorListener(ParseErrorListener el)
Sets the ParseErrorListener that will be notified of any errors that this
parser finds during parsing.
|
void |
setParseLocationListener(ParseLocationListener el)
Sets the ParseLocationListener that will be notified of the parser's
progress during the parse process.
|
void |
setParserConfig(ParserConfig config)
Sets all supplied parser configuration options.
|
void |
setPreserveBNodeIDs(boolean preserveBNodeIDs)
Set whether the parser should preserve bnode identifiers specified in the
source (default is false).
|
void |
setRDFHandler(RDFHandler handler)
Sets the RDFHandler that will handle the parsed RDF data.
|
void |
setStopAtFirstError(boolean stopAtFirstError)
Deprecated.
|
void |
setValueFactory(ValueFactory valueFactory)
Sets the ValueFactory that the parser will use to create Value objects for
the parsed RDF data.
|
void |
setVerifyData(boolean verifyData)
Sets whether the parser should verify the data it parses (default value is
true).
|
boolean |
stopAtFirstError()
Deprecated.
Check specific settings instead.
|
boolean |
verifyData()
Deprecated.
Use specific settings instead.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetRDFFormat, parse, parseprotected RDFHandler rdfHandler
protected ValueFactory valueFactory
public RDFParserBase()
ValueFactoryImpl to
create RDF model objects.public RDFParserBase(ValueFactory valueFactory)
valueFactory - A ValueFactory.public void setValueFactory(ValueFactory valueFactory)
RDFParsersetValueFactory in interface RDFParservalueFactory - The value factory that the parser should use.public void setRDFHandler(RDFHandler handler)
RDFParsersetRDFHandler in interface RDFParserpublic RDFHandler getRDFHandler()
public void setParseErrorListener(ParseErrorListener el)
RDFParsersetParseErrorListener in interface RDFParserpublic ParseErrorListener getParseErrorListener()
public void setParseLocationListener(ParseLocationListener el)
RDFParsersetParseLocationListener in interface RDFParserpublic ParseLocationListener getParseLocationListener()
public void setParserConfig(ParserConfig config)
RDFParsersetParserConfig in interface RDFParserconfig - a parser configuration object.public ParserConfig getParserConfig()
RDFParsergetParserConfig in interface RDFParserpublic Collection<RioSetting<?>> getSupportedSettings()
getSupportedSettings in interface RDFParserRioSettings that are supported by this
RDFParser.public void setVerifyData(boolean verifyData)
RDFParsersetVerifyData in interface RDFParser@Deprecated public boolean verifyData()
public void setPreserveBNodeIDs(boolean preserveBNodeIDs)
RDFParsersetPreserveBNodeIDs in interface RDFParserpublic boolean preserveBNodeIDs()
@Deprecated public void setStopAtFirstError(boolean stopAtFirstError)
RDFParsersetStopAtFirstError in interface RDFParser@Deprecated public boolean stopAtFirstError()
public void setDatatypeHandling(RDFParser.DatatypeHandling datatypeHandling)
RDFParsersetDatatypeHandling in interface RDFParserdatatypeHandling - A datatype handling option.@Deprecated public RDFParser.DatatypeHandling datatypeHandling()
BasicParserSettings.VERIFY_DATATYPE_VALUES and
BasicParserSettings.FAIL_ON_UNKNOWN_DATATYPES and
BasicParserSettings.NORMALIZE_DATATYPE_VALUES instead.protected void setBaseURI(String uriSpec)
protected void setBaseURI(ParsedURI baseURI)
protected void setNamespace(String prefix, String namespace)
protected String getNamespace(String prefix) throws RDFParseException
RDFParseException.RDFParseException - if no namespace is associated with this prefixprotected void clear()
@Deprecated protected void clearBNodeIDMap()
protected URI resolveURI(String uriSpec) throws RDFParseException
URI
object for it.RDFParseExceptionprotected URI createURI(String uri) throws RDFParseException
URI object for the specified URI-string.RDFParseExceptionprotected BNode createBNode() throws RDFParseException
BNode object.RDFParseExceptionprotected BNode createBNode(String nodeID) throws RDFParseException
BNode object for the specified identifier.RDFParseExceptionprotected Literal createLiteral(String label, String lang, URI datatype) throws RDFParseException
Literal object with the supplied parameters.RDFParseExceptionprotected Literal createLiteral(String label, String lang, URI datatype, int lineNo, int columnNo) throws RDFParseException
Literal object with the supplied parameters, using the
lineNo and columnNo to enhance error messages or exceptions that may be
generated during the creation of the literal.protected Statement createStatement(Resource subj, URI pred, Value obj) throws RDFParseException
Statement object with the supplied components.RDFParseExceptionprotected Statement createStatement(Resource subj, URI pred, Value obj, Resource context) throws RDFParseException
Statement object with the supplied components.RDFParseExceptionprotected void reportLocation(int lineNo,
int columnNo)
ParseLocationListener, if any.protected void reportWarning(String msg)
reportWarning(String,int,int) supplying
-1 for the line- and column number.protected void reportWarning(String msg, int lineNo, int columnNo)
protected void reportError(String msg, RioSetting<Boolean> relevantSetting) throws RDFParseException
This method also throws an RDFParseException when the given
setting has been set to true and it is not a nonFatalError.
msg - The message to use for
ParseErrorListener.error(String, int, int) and for
RDFParseException.RDFParseException(String, int, int).relevantSetting - The boolean setting that will be checked to determine if this is an
issue that we need to look at at all. If this setting is true, then
the error listener will receive the error, and if
ParserConfig.isNonFatalError(RioSetting) returns true an
exception will be thrown.RDFParseException - If RioConfig.get(RioSetting) returns true, and
ParserConfig.isNonFatalError(RioSetting) returns true for
the given setting.protected void reportError(String msg, int lineNo, int columnNo, RioSetting<Boolean> relevantSetting) throws RDFParseException
This method also throws an RDFParseException when the given
setting has been set to true and it is not a nonFatalError.
msg - The message to use for
ParseErrorListener.error(String, int, int) and for
RDFParseException.RDFParseException(String, int, int).lineNo - Optional line number, should default to setting this as -1 if not
known. Used for ParseErrorListener.error(String, int, int)
and for
RDFParseException.RDFParseException(String, int, int).columnNo - Optional column number, should default to setting this as -1 if not
known. Used for ParseErrorListener.error(String, int, int)
and for
RDFParseException.RDFParseException(String, int, int).relevantSetting - The boolean setting that will be checked to determine if this is an
issue that we need to look at at all. If this setting is true, then
the error listener will receive the error, and if
ParserConfig.isNonFatalError(RioSetting) returns true an
exception will be thrown.RDFParseException - If RioConfig.get(RioSetting) returns true, and
ParserConfig.isNonFatalError(RioSetting) returns true for
the given setting.protected void reportError(Exception e, int lineNo, int columnNo, RioSetting<Boolean> relevantSetting) throws RDFParseException
This method also throws an RDFParseException when the given
setting has been set to true and it is not a nonFatalError.
msg - The message to use for
ParseErrorListener.error(String, int, int) and for
RDFParseException.RDFParseException(String, int, int).lineNo - Optional line number, should default to setting this as -1 if not
known. Used for ParseErrorListener.error(String, int, int)
and for
RDFParseException.RDFParseException(String, int, int).columnNo - Optional column number, should default to setting this as -1 if not
known. Used for ParseErrorListener.error(String, int, int)
and for
RDFParseException.RDFParseException(String, int, int).relevantSetting - The boolean setting that will be checked to determine if this is an
issue that we need to look at at all. If this setting is true, then
the error listener will receive the error, and if
ParserConfig.isNonFatalError(RioSetting) returns true an
exception will be thrown.RDFParseException - If RioConfig.get(RioSetting) returns true, and
ParserConfig.isNonFatalError(RioSetting) returns true for
the given setting.protected void reportFatalError(String msg) throws RDFParseException
reportFatalError(String,int,int) supplying -1 for the
line- and column number.RDFParseExceptionprotected void reportFatalError(String msg, int lineNo, int columnNo) throws RDFParseException
RDFParseExceptionprotected void reportFatalError(Exception e) throws RDFParseException
RDFParseException; in that
case the supplied exception is not wrapped in another ParseException and
the error message is not reported to the ParseErrorListener, assuming that
it has already been reported when the original ParseException was thrown.
This method simply calls reportFatalError(Exception,int,int)
supplying -1 for the line- and column number.
RDFParseExceptionprotected void reportFatalError(Exception e, int lineNo, int columnNo) throws RDFParseException
RDFParseException; in that case the supplied exception is not
wrapped in another ParseException and the error message is not reported to
the ParseErrorListener, assuming that it has already been reported when
the original ParseException was thrown.RDFParseExceptionCopyright © 2001-2014 Aduna. All Rights Reserved.