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 IRIdatatypeAn optional datatype.private ResourcelastListResourceThe resource that was used to append the last part of an rdf:List.private booleanparseCollectionFlag indicating whether this PropertyElement has an attribute rdf:parseType="Collection".private IRIreificationURIAn optional reification identifier.private IRIuriThe property URI.
-
Constructor Summary
Constructors Constructor Description PropertyElement(IRI uri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IRIgetDatatype()ResourcegetLastListResource()IRIgetReificationURI()IRIgetURI()booleanisReified()booleanparseCollection()voidsetDatatype(IRI datatype)voidsetLastListResource(Resource resource)voidsetParseCollection(boolean parseCollection)voidsetReificationURI(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)
-
-