|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.hp.hpl.jena.rdf.arp.JenaReader
public class JenaReader
Interface between Jena and ARP.
Field Summary |
---|
Constructor Summary | |
---|---|
JenaReader()
Creates new JenaReader |
Method Summary | |
---|---|
static int |
errorCode(java.lang.String upper)
Deprecated. Use ParseException.errorCode(String) |
static java.lang.String |
errorCodeName(int errNo)
Deprecated. Use ParseException.errorCodeName(int) |
void |
read(Graph g,
java.io.InputStream in,
java.lang.String xmlBase)
Reads from inputStream, using base URI xmlbase, adding triples to graph. |
void |
read(Graph g,
java.io.Reader reader,
java.lang.String xmlBase)
Reads from reader, using base URI xmlbase, adding triples to graph. |
void |
read(Model m,
java.io.InputStream in,
java.lang.String xmlBase)
Reads from inputStream, using base URI xmlbase, adding triples to model. |
void |
read(Model m,
java.io.Reader reader,
java.lang.String xmlBase)
Reads from reader, using base URI xmlbase, adding triples to model. |
void |
read(Model m,
java.lang.String url)
Reads from url, using url as base, adding triples to model. |
RDFErrorHandler |
setErrorHandler(RDFErrorHandler errHandler)
Change the error handler. |
java.lang.Object |
setProperty(java.lang.String str,
java.lang.Object value)
Change a property of the RDF or XML parser. |
static Literal |
translate(ALiteral lit)
Deprecated. Should never have been public. |
static Property |
translatePred(AResource r)
Deprecated. Should never have been public. |
static void |
useMe(Model m)
Deprecated. This is the default behaviour |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JenaReader()
Method Detail |
---|
public static void useMe(Model m)
m
- The Model on which to set the reader properties.public void read(Model m, java.lang.String url) throws JenaException
read
in interface RDFReader
m
- A model to add triples to.url
- The URL of the RDF/XML document.
JenaException
public static Literal translate(ALiteral lit)
lit
- The ARP literal.
public static Property translatePred(AResource r) throws JenaException
r
- The ARP resource.
JenaException
- If r is anonymous, or similarly ill-formed.public void read(Model m, java.io.Reader reader, java.lang.String xmlBase) throws JenaException
read
in interface RDFReader
m
- A model to add triples to.reader
- The RDF/XML document.xmlBase
- The base URI of the document or "".
JenaException
public void read(Graph g, java.io.Reader reader, java.lang.String xmlBase) throws JenaException
g
- A graph to add triples to.reader
- The RDF/XML document.xmlBase
- The base URI of the document or "".
JenaException
public void read(Model m, java.io.InputStream in, java.lang.String xmlBase) throws JenaException
read
in interface RDFReader
m
- A model to add triples to.in
- The RDF/XML document stream.xmlBase
- The base URI of the document or "".
JenaException
public void read(Graph g, java.io.InputStream in, java.lang.String xmlBase)
g
- A graph to add triples to.in
- The RDF/XML document stream.xmlBase
- The base URI of the document or "".public RDFErrorHandler setErrorHandler(RDFErrorHandler errHandler)
Note that errors of class ParseException
can be promoted using
the ParseException.promote()
method. See ARP documentation for
ErrorHandler
for the details of error promotion.
setErrorHandler
in interface RDFReader
errHandler
- The new error handler.
public java.lang.Object setProperty(java.lang.String str, java.lang.Object value) throws JenaException
I do not believe that many of the XML features or properties are in fact useful for ARP users. The ARP properties allow fine-grained control over error reporting.
This interface can be used to set and get:
http://jena.hpl.hp.com/arp/properties/<PropertyName>
.
The value should be a String, an Integer or a Boolean depending on the
property. ARP Properties | |||
Property Name | Description | Value class | Legal Values |
---|---|---|---|
error-mode |
ARPOptions.setDefaultErrorMode() ARPOptions.setLaxErrorMode() ARPOptions.setStrictErrorMode() ARPOptions.setStrictErrorMode(int) |
String | default lax strict strict-ignore strict-warning strict-error strict-fatal |
embedding |
ARP.setEmbedding(boolean) |
String or Boolean | true or false |
ERR_<XXX> WARN_<XXX> IGN_<XXX> |
ARPErrorNumbers Any of the error condition numbers listed. ARPOptions.setErrorMode(int, int) |
String or Integer | EM_IGNORE EM_WARNING EM_ERROR EM_FATAL |
setProperty
in interface RDFReader
str
- The property to set.value
- The new value; values of class String will be converted into
appropriate classes. Values of class Boolean or Integer will
be used for appropriate properties.
JenaException
- For bad values.public static java.lang.String errorCodeName(int errNo)
ParseException.errorCodeName(int)
public static int errorCode(java.lang.String upper)
ParseException.errorCode(String)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |