|
|||||||||||
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
Interface between Jena and ARP.
Field Summary |
Constructor Summary | |
JenaReader()
Creates new JenaReader |
Method Summary | |
static int |
errorCode(java.lang.String upper)
|
static java.lang.String |
errorCodeName(int errNo)
|
static Model |
memModel()
Deprecated. This Reader is now the default. |
void |
read(Model model,
java.io.InputStream in,
java.lang.String xmlBase)
Reads from inputStream, using base URI xmlbase, adding triples to model. |
void |
read(Model model,
java.io.Reader reader,
java.lang.String xmlBase)
Reads from reader, using base URI xmlbase, adding triples to model. |
void |
read(Model model,
java.lang.String url)
Read serialized RDF from a url and add the statements to a 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 Resource |
translate(AResource r)
Deprecated. Should never have been public. |
static Property |
translatePred(AResource r)
Deprecated. Should never have been public. |
static void |
useMe(Model m)
Sets the reader for the languages RDF/XML and RDF/XML-ABBREV to be JenaReader. |
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 model, java.lang.String url) throws com.hp.hpl.jena.shared.JenaException
RDFReader
read
in interface RDFReader
model
- the model to which statements should be addedurl
- the url, as a string, from which the serialized RDF
should be read.
com.hp.hpl.jena.shared.JenaException
public static Literal translate(ALiteral lit)
lit
- The ARP literal.
public static Resource translate(AResource r)
r
- The ARP resource.
public static Property translatePred(AResource r) throws com.hp.hpl.jena.shared.JenaException
r
- The ARP resource.
com.hp.hpl.jena.shared.JenaException
- If r is anonymous, or similarly ill-formed.public void read(Model model, java.io.Reader reader, java.lang.String xmlBase) throws com.hp.hpl.jena.shared.JenaException
read
in interface RDFReader
model
- A model to add triples to.reader
- The RDF/XML document.xmlBase
- The base URI of the document or "".
com.hp.hpl.jena.shared.JenaException
public void read(Model model, java.io.InputStream in, java.lang.String xmlBase) throws com.hp.hpl.jena.shared.JenaException
read
in interface RDFReader
model
- A model to add triples to.in
- The RDF/XML document stream.xmlBase
- The base URI of the document or "".
com.hp.hpl.jena.shared.JenaException
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 com.hp.hpl.jena.shared.JenaException
This method is untested.
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 |
ARP.setDefaultErrorMode() ARP.setLaxErrorMode() ARP.setStrictErrorMode() ARP.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. ARP.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.
com.hp.hpl.jena.shared.JenaException
- For bad values.public static int errorCode(java.lang.String upper)
public static java.lang.String errorCodeName(int errNo)
public static Model memModel()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |