Package org.eclipse.rdf4j.rio.rdfxml
Class RDFXMLParser.PropertyElement
- java.lang.Object
-
- org.eclipse.rdf4j.rio.rdfxml.RDFXMLParser.PropertyElement
-
- Enclosing class:
- RDFXMLParser
static class RDFXMLParser.PropertyElement extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private IRI
datatype
An optional datatype.private Resource
lastListResource
The resource that was used to append the last part of an rdf:List.private boolean
parseCollection
Flag indicating whether this PropertyElement has an attribute rdf:parseType="Collection".private IRI
reificationURI
An optional reification identifier.private IRI
uri
The property URI.
-
Constructor Summary
Constructors Constructor Description PropertyElement(IRI uri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IRI
getDatatype()
Resource
getLastListResource()
IRI
getReificationURI()
IRI
getURI()
boolean
isReified()
boolean
parseCollection()
void
setDatatype(IRI datatype)
void
setLastListResource(Resource resource)
void
setParseCollection(boolean parseCollection)
void
setReificationURI(IRI reifURI)
-
-
-
Field Detail
-
uri
private final IRI uri
The property URI.
-
reificationURI
private IRI reificationURI
An optional reification identifier.
-
datatype
private IRI datatype
An optional datatype.
-
parseCollection
private boolean parseCollection
Flag indicating whether this PropertyElement has an attribute rdf:parseType="Collection".
-
lastListResource
private Resource lastListResource
The resource that was used to append the last part of an rdf:List.
-
-
Constructor Detail
-
PropertyElement
public PropertyElement(IRI uri)
-
-
Method Detail
-
getURI
public IRI getURI()
-
isReified
public boolean isReified()
-
setReificationURI
public void setReificationURI(IRI reifURI)
-
getReificationURI
public IRI getReificationURI()
-
setDatatype
public void setDatatype(IRI datatype)
-
getDatatype
public IRI getDatatype()
-
parseCollection
public boolean parseCollection()
-
setParseCollection
public void setParseCollection(boolean parseCollection)
-
getLastListResource
public Resource getLastListResource()
-
setLastListResource
public void setLastListResource(Resource resource)
-
-