Package | Description |
---|---|
org.ontoware.rdf2go | |
org.ontoware.rdf2go.model | |
org.ontoware.rdf2go.model.impl | |
org.ontoware.rdf2go.model.node | |
org.ontoware.rdf2go.model.node.impl | |
org.ontoware.rdf2go.util | |
org.ontoware.rdf2go.util.transform | |
org.ontoware.rdf2go.vocabulary | |
org.ontoware.rdfreactor.generator | |
org.ontoware.rdfreactor.generator.java | |
org.ontoware.rdfreactor.runtime |
Generic methods for mapping object-oriented world to RDF triple world.
|
org.ontoware.rdfreactor.runtime.converter |
Implementations of
INodeConverter . |
org.ontoware.rdfreactor.schema.bootstrap | |
org.ontoware.rdfreactor.schema.owl |
Generated and hand-optimized classes for handling OWL represented as RDF.
|
org.ontoware.rdfreactor.schema.rdfs |
Generated and hand-optimized classes for handling RDFS represented as RDF.
|
org.openrdf.rdf2go |
Modifier and Type | Method and Description |
---|---|
Model |
ModelFactory.createModel(URI contextURI)
Create a default in-memory ModelSet with no inferencing and the given
context URI.
|
Modifier and Type | Method and Description |
---|---|
URI |
ModelValueFactory.createURI(String uriString)
The model must create URIs it would accept itself.
|
URI |
ModelSet.createURI(String uriString)
Creates an RDF2Go URI.
|
URI |
Statement.getContext()
Note: this was set to be a
Model before, but that would have
caused problems, when people accesssed the model via the Statement. |
URI |
Model.getContextURI() |
URI |
Statement.getPredicate() |
URI |
ModelValueFactory.newRandomUniqueURI()
Implementations are free to choose if their semantics are unique within
the this model, the ModelSet, or unique in the universe
|
Modifier and Type | Method and Description |
---|---|
ClosableIterator<URI> |
ModelSet.getModelURIs() |
Modifier and Type | Method and Description |
---|---|
void |
ModelSet.addModel(Model model,
URI contextURI)
Adds a complete
Model to the given contextURI. |
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
Node object)
adds a (subject, property ,object)-statement to this model
|
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
String literal)
adds a (subject, property, literal)-statement to the model.
|
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
String literal,
String languageTag)
adds a (subject, property, liteal, language-tag)-statement to the model.
|
void |
ModelWriter.addStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI)
adds a (subject, property, literal ,datatype)-statement to the model.
|
void |
ModelWriter.addStatement(String subjectURIString,
URI predicate,
String literal)
adds a (subject, property, literal)-statement to the model.
|
void |
ModelWriter.addStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag)
adds a (subject, property, liteal, language-tag)-statement to the model.
|
void |
ModelWriter.addStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI)
adds a (subject, property, literal, data-type)-statement to the model.
|
void |
ModelSetAddRemove.addStatement(URI contextURI,
Resource subject,
URI predicate,
Node object)
This method creates a Model named 'contextURI' if needed.
|
boolean |
ModelSet.containsModel(URI contextURI) |
DatatypeLiteral |
ModelValueFactory.createDatatypeLiteral(String literal,
URI datatypeURI) |
Statement |
ModelValueFactory.createStatement(Resource subject,
URI predicate,
Node object)
Create a new statement - but DOES NOT add it to the model
|
Statement |
ModelSet.createStatement(URI context,
Resource subject,
URI predicate,
Node object)
Creates a statement with a context URI.
|
Model |
ModelSet.getModel(URI contextURI)
Get the Model with the passed URI.
|
Object |
Model.getProperty(URI propertyURI) |
boolean |
ModelSet.removeModel(URI contextURI)
Removes the Model (NamedGraph) denoted by contextURI from this modelset.
|
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
Node object)
remove a (subject, property ,object)-statement from the model
|
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
String literal) |
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
String literal,
String languageTag)
remove a (subject, property ,literal, language tag)-statement from the
model
|
void |
ModelAddRemove.removeStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI)
remove a (subject, property ,literal, datatype)-statement from the model
datatype often is an uri for a xml schema datatype (xsd)
|
void |
ModelAddRemove.removeStatement(String subjectURIString,
URI predicate,
String literal) |
void |
ModelAddRemove.removeStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag)
remove a (subject, property ,literal, language tag)-statement from the
model
|
void |
ModelAddRemove.removeStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI)
remove a (subject, property ,literal, datatype)-statement from the model
datatype often is an uri for a xml schema datatype (xsd)
|
void |
ModelSetAddRemove.removeStatement(URI contextURI,
Resource subject,
URI predicate,
Node object)
Removes the statement (s,p,o) from a model named contextURI.
|
void |
Model.setProperty(URI propertyURI,
Object value)
Add an arbitrary runtime property, this will not be persisted and is only
available at runtime.
|
Modifier and Type | Field and Description |
---|---|
protected URI |
StatementImpl.predicate |
Modifier and Type | Method and Description |
---|---|
static URI |
URIGenerator.createNewRandomUniqueURI() |
static URI |
URIGenerator.createNewRandomUniqueURI(String uriPrefix) |
URI |
DelegatingModel.createURI(String uriString) |
URI |
DelegatingModelSet.createURI(String uriString) |
URI |
AbstractModelSetImpl.createURI(String uriString) |
URI |
AbstractModel.createURI(String uriString) |
URI |
StatementImpl.getContext() |
URI |
DelegatingModel.getContextURI() |
URI |
StatementImpl.getPredicate() |
URI |
DelegatingModel.newRandomUniqueURI() |
URI |
AbstractModelSetImpl.newRandomUniqueURI() |
URI |
AbstractModel.newRandomUniqueURI() |
Modifier and Type | Method and Description |
---|---|
ClosableIterator<URI> |
DelegatingModelSet.getModelURIs() |
Modifier and Type | Method and Description |
---|---|
void |
DelegatingModelSet.addModel(Model model,
URI contextURI) |
void |
AbstractModelSetImpl.addModel(Model model,
URI contextURI)
subclasses should overwrite this for performance reasons
|
void |
NotifyingModelLayer.addStatement(Resource subject,
URI predicate,
Node object) |
void |
ModelAddRemoveMemoryImpl.addStatement(Resource subject,
URI predicate,
Node object) |
void |
DelegatingModel.addStatement(Resource subject,
URI predicate,
Node object) |
abstract void |
AbstractModelAddRemove.addStatement(Resource subject,
URI predicate,
Node object) |
void |
StatementWriter.addStatement(Resource subject,
URI predicate,
Node object) |
abstract void |
AbstractModelWriter.addStatement(Resource subject,
URI predicate,
Node object) |
void |
DiffImpl.addStatement(Resource subject,
URI predicate,
Node object) |
void |
NotifyingModelLayer.addStatement(Resource subject,
URI predicate,
String literal) |
void |
DelegatingModel.addStatement(Resource subject,
URI predicate,
String literal) |
void |
AbstractModelWriter.addStatement(Resource subject,
URI predicate,
String literal) |
void |
AbstractModel.addStatement(Resource subject,
URI predicate,
String literal) |
void |
NotifyingModelLayer.addStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
DelegatingModel.addStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModelWriter.addStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModel.addStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
NotifyingModelLayer.addStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
DelegatingModel.addStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModelWriter.addStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModel.addStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
NotifyingModelLayer.addStatement(String subjectURIString,
URI predicate,
String literal) |
void |
DelegatingModel.addStatement(String subjectURIString,
URI predicate,
String literal) |
void |
AbstractModelWriter.addStatement(String subjectURIString,
URI predicate,
String literal) |
void |
AbstractModel.addStatement(String subjectURIString,
URI predicate,
String literal) |
void |
NotifyingModelLayer.addStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
DelegatingModel.addStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModelWriter.addStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModel.addStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
NotifyingModelLayer.addStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
DelegatingModel.addStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModelWriter.addStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModel.addStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModelSetImpl.addStatement(URI context,
Resource subject,
URI predicate,
Node object) |
boolean |
DelegatingModelSet.containsModel(URI contextURI) |
DatatypeLiteral |
AbstractModelSetImpl.createDatatypeLiteral(String literal,
URI datatypeURI) |
DatatypeLiteral |
AbstractModel.createDatatypeLiteral(String literal,
URI datatypeURI) |
static TriplePatternImpl |
TriplePatternImpl.createObjectPattern(Resource resource,
URI propertyURI) |
Statement |
AbstractModelSetImpl.createStatement(Resource subject,
URI predicate,
Node object) |
Statement |
AbstractModel.createStatement(Resource subject,
URI predicate,
Node object) |
Statement |
AbstractModelSetImpl.createStatement(URI context,
Resource subject,
URI predicate,
Node object) |
static TriplePatternImpl |
TriplePatternImpl.createSubjectPattern(URI propertyURI,
Node objectNode) |
Model |
DelegatingModelSet.getModel(URI contextURI) |
Model |
NotifyingModelSetLayer.getModel(URI contextURI) |
Object |
DelegatingModel.getProperty(URI propertyURI) |
Object |
AbstractModel.getProperty(URI propertyURI)
Note: This is a property of the model, not an RDF property
|
boolean |
DelegatingModelSet.removeModel(URI contextURI) |
void |
NotifyingModelLayer.removeStatement(Resource subject,
URI predicate,
Node object) |
void |
ModelAddRemoveMemoryImpl.removeStatement(Resource subject,
URI predicate,
Node object) |
void |
DelegatingModel.removeStatement(Resource subject,
URI predicate,
Node object) |
abstract void |
AbstractModelAddRemove.removeStatement(Resource subject,
URI predicate,
Node object) |
void |
DiffImpl.removeStatement(Resource subject,
URI predicate,
Node object) |
void |
NotifyingModelLayer.removeStatement(Resource subject,
URI predicate,
String literal) |
void |
DelegatingModel.removeStatement(Resource subject,
URI predicate,
String literal) |
void |
AbstractModelAddRemove.removeStatement(Resource subject,
URI predicate,
String literal) |
void |
AbstractModel.removeStatement(Resource subject,
URI predicate,
String literal) |
void |
NotifyingModelLayer.removeStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
DelegatingModel.removeStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModelAddRemove.removeStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModel.removeStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
NotifyingModelLayer.removeStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
DelegatingModel.removeStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModelAddRemove.removeStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModel.removeStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
NotifyingModelLayer.removeStatement(String subjectURIString,
URI predicate,
String literal) |
void |
DelegatingModel.removeStatement(String subjectURIString,
URI predicate,
String literal) |
void |
AbstractModelAddRemove.removeStatement(String subjectURIString,
URI predicate,
String literal) |
void |
AbstractModel.removeStatement(String subjectURIString,
URI predicate,
String literal) |
void |
NotifyingModelLayer.removeStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
DelegatingModel.removeStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModelAddRemove.removeStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
AbstractModel.removeStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
NotifyingModelLayer.removeStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
DelegatingModel.removeStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModelAddRemove.removeStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModel.removeStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
AbstractModelSetImpl.removeStatement(URI context,
Resource subject,
URI predicate,
Node object) |
void |
DelegatingModel.setProperty(URI propertyURI,
Object value) |
void |
AbstractModel.setProperty(URI propertyURI,
Object value)
Add an arbitrary property, this will not be persisted and is only
available at runtime.
|
Constructor and Description |
---|
StatementImpl(URI context,
Resource subject,
URI predicate,
Node object)
builds a new statement
|
StatementWriter(Writer w,
URI graphName) |
TriplePatternImpl(ResourceOrVariable subject,
URI predicate,
String object)
Convenience constructor
|
Modifier and Type | Method and Description |
---|---|
URI |
Variable.asURI() |
URI |
Node.asURI()
A convenience method for a cast to org.ontoware.rdf2go.model.node.URI
|
URI |
DatatypeLiteral.getDatatype()
the URI normally is an URI for a xml schema datatype (xsd)
|
Modifier and Type | Class and Description |
---|---|
class |
URIImpl |
Modifier and Type | Method and Description |
---|---|
URI |
LiteralImpl.asURI() |
URI |
AbstractBlankNodeImpl.asURI() |
URI |
URIImpl.asURI() |
static URI |
URIImpl.create(String uriString)
Deprecated.
use the constructors instead
|
static URI |
URIImpl.createURIWithoutChecking(String uriString)
Deprecated.
use the constructors instead
|
URI |
DatatypeLiteralImpl.getDatatype() |
Constructor and Description |
---|
DatatypeLiteralImpl(String value,
URI datatype)
constructs a Datatype Literal
|
Modifier and Type | Method and Description |
---|---|
URI |
LoggingModelSet.createURI(String uriString) |
URI |
LoggingModel.createURI(String uriString) |
static URI |
Builder.createURI(String uri) |
URI |
LoggingModel.getContextURI() |
URI |
LoggingModelSet.newRandomUniqueURI() |
URI |
LoggingModel.newRandomUniqueURI() |
static URI |
Builder.toPredicate(String predicate)
Parses a specified predicate as String in order to create a new predicate
using RDF2Go types.
|
Modifier and Type | Method and Description |
---|---|
ClosableIterator<URI> |
LoggingModelSet.getModelURIs() |
Modifier and Type | Method and Description |
---|---|
void |
LoggingModelSet.addModel(Model model,
URI contextURI) |
void |
LoggingModel.addStatement(Resource subject,
URI predicate,
Node object) |
void |
LoggingModel.addStatement(Resource subject,
URI predicate,
String literal) |
void |
LoggingModel.addStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
LoggingModel.addStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
LoggingModel.addStatement(String subjectURIString,
URI predicate,
String literal) |
void |
LoggingModel.addStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
LoggingModel.addStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
LoggingModelSet.addStatement(URI contextURI,
Resource subject,
URI predicate,
Node object) |
boolean |
LoggingModelSet.containsModel(URI contextURI) |
DatatypeLiteral |
LoggingModelSet.createDatatypeLiteral(String literal,
URI datatypeURI) |
DatatypeLiteral |
LoggingModel.createDatatypeLiteral(String literal,
URI datatypeURI) |
static DatatypeLiteral |
Builder.createDataTypeLiteral(String arg0,
URI arg1) |
Statement |
LoggingModelSet.createStatement(Resource subject,
URI predicate,
Node object) |
Statement |
LoggingModel.createStatement(Resource subject,
URI predicate,
Node object) |
static Statement |
Builder.createStatement(Resource subject,
URI predicate,
Node object) |
Statement |
LoggingModelSet.createStatement(URI context,
Resource subject,
URI predicate,
Node object) |
void |
VocabularyWriter.generateElement(URI type,
boolean isProperty) |
Model |
LoggingModelSet.getModel(URI contextURI) |
Object |
LoggingModel.getProperty(URI propertyURI) |
static Node |
RDFTool.getSingleValue(Model m,
Resource res,
URI pred)
get the property pred of the resource res.
|
static Node |
RDFTool.getSingleValue(ModelSet m,
Resource res,
URI pred) |
static String |
RDFTool.getSingleValueString(Model m,
Resource res,
URI pred)
read the values of a predicate of a resource.
|
static String |
RDFTool.getSingleValueString(ModelSet modelset,
Resource res,
URI pred)
read the values of a predicate of a resource.
|
void |
VocabularyWriter.printCommentAndLabel(URI uri)
print comment and label of the uri to the passed stream
|
boolean |
LoggingModelSet.removeModel(URI contextURI) |
void |
LoggingModel.removeStatement(Resource subject,
URI predicate,
Node object) |
void |
LoggingModel.removeStatement(Resource subject,
URI predicate,
String literal) |
void |
LoggingModel.removeStatement(Resource subject,
URI predicate,
String literal,
String languageTag) |
void |
LoggingModel.removeStatement(Resource subject,
URI predicate,
String literal,
URI datatypeURI) |
void |
LoggingModel.removeStatement(String subjectURIString,
URI predicate,
String literal) |
void |
LoggingModel.removeStatement(String subjectURIString,
URI predicate,
String literal,
String languageTag) |
void |
LoggingModel.removeStatement(String subjectURIString,
URI predicate,
String literal,
URI datatypeURI) |
void |
LoggingModelSet.removeStatement(URI contextURI,
Resource subject,
URI predicate,
Node object) |
void |
LoggingModel.setProperty(URI propertyURI,
Object value) |
static void |
RDFTool.setSingleValue(Model m,
Resource res,
URI pred,
Node value)
set the property pred of the resource res.
|
static void |
RDFTool.setSingleValue(Model m,
Resource res,
URI pred,
String value)
set the property pred of the resource res.
|
Modifier and Type | Method and Description |
---|---|
static void |
URISearchReplaceRule.searchAndReplace(Model model,
Map<String,URI> namespaceMap,
URI search,
URI replace) |
Modifier and Type | Method and Description |
---|---|
void |
InferenceRule.applyRule(Model model,
Map<String,URI> namespaceMap) |
void |
TransformerRule.applyRule(Model model,
Map<String,URI> namespaceMap) |
void |
URISearchReplaceRule.applyRule(Model model,
Map<String,URI> namespaceMap) |
void |
SearchRemoveAddRule.applyRule(Model model,
Map<String,URI> namespaceMap) |
void |
NamespaceSearchReplaceRule.applyRule(Model model,
Map<String,URI> namespaceMap) |
static void |
SearchRemoveAddRule.searchAndReplace(Model model,
Map<String,URI> namespaceMap,
String search,
String remove,
String add) |
static void |
URISearchReplaceRule.searchAndReplace(Model model,
Map<String,URI> namespaceMap,
URI search,
URI replace) |
static String |
Transformer.toSparqlConstruct(Map<String,URI> namespaceMap,
String construct,
String where) |
static void |
Transformer.transform(Model model,
Map<String,URI> namespaceMap,
List<TransformerRule> rules) |
Constructor and Description |
---|
URISearchReplaceRule(URI search,
URI replace) |
Modifier and Type | Field and Description |
---|---|
static URI |
XSD._anyURI |
static URI |
XSD._base64Binary |
static URI |
XSD._boolean |
static URI |
XSD._byte |
static URI |
XSD._date |
static URI |
XSD._dateTime |
static URI |
XSD._dayTimeDuration |
static URI |
XSD._decimal |
static URI |
XSD._double |
static URI |
XSD._duration
Deprecated.
|
static URI |
XSD._ENTITIES |
static URI |
XSD._ENTITY |
static URI |
XSD._float |
static URI |
XSD._gDay |
static URI |
XSD._gMonth |
static URI |
XSD._gMonthDay |
static URI |
XSD._gYear |
static URI |
XSD._gYearMonth |
static URI |
XSD._hexBinary |
static URI |
XSD._ID |
static URI |
XSD._IDREF |
static URI |
XSD._IDREFS |
static URI |
XSD._int
http://www.w3.org/TR/xmlschema-2/datatypes.html#int
[Definition:] int is derived from long by setting the value of
maxInclusive to be 2147483647 and minInclusive to be -2147483648.
|
static URI |
XSD._integer |
static URI |
XSD._language |
static URI |
XSD._long |
static URI |
XSD._Name |
static URI |
XSD._NCName |
static URI |
XSD._negativeInteger |
static URI |
XSD._NMTOKEN |
static URI |
XSD._NMTOKENS |
static URI |
XSD._nonNegativeInteger |
static URI |
XSD._nonPositiveInteger |
static URI |
XSD._normalizedString |
static URI |
XSD._positiveInteger |
static URI |
XSD._QName |
static URI |
XSD._short |
static URI |
XSD._string |
static URI |
XSD._time |
static URI |
XSD._token |
static URI |
XSD._unsignedByte |
static URI |
XSD._unsignedInt |
static URI |
XSD._unsignedLong |
static URI |
XSD._unsignedShort |
static URI |
XSD._yearMonthDuration |
static URI[] |
XSD.ALL
For convenience: An array of all types in this interface
|
static URI |
OWL.AllDifferent |
static URI |
OWL.allValuesFrom |
static URI |
RDF.Alt |
static URI |
OWL.AnnotationProperty
OWL Full does not put any constraints on annotations in an ontology.
|
static URI |
OWL.backwardCompatibleWith
An owl:backwardCompatibleWith statement contains a reference to another
ontology.
|
static URI |
RDF.Bag
http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag
|
static URI |
OWL.cardinality
The cardinality constraint owl:cardinality is a built-in OWL property
that links a restriction class to a data value belonging to the range of
the XML Schema datatype nonNegativeInteger.
|
static URI |
OWL.Class
OWL distinguishes six types of class descriptions:
1.
|
static URI |
RDFS.Class |
static URI |
RDFS.comment |
static URI |
OWL.complementOf |
static URI |
RDFS.ConstraintProperty
Deprecated.
URI was present in
http://www.w3.org/TR/2000/CR-rdf-schema-20000327/ but removed
for final 1.0 spec
|
static URI |
RDFS.ConstraintResource
Deprecated.
URI was present in
http://www.w3.org/TR/2000/CR-rdf-schema-20000327/ but removed
for final 1.0 spec
|
static URI |
RDFS.Container |
static URI |
RDFS.ContainerMembershipProperty |
static URI |
OWL.DataRange |
static URI |
RDFS.Datatype |
static URI |
OWL.DatatypeProperty |
static URI |
OWL.DeprecatedClass
Here, a specific identifier is said to be of type owl:DeprecatedClass,
which is a subclass of rdfs:Class.
|
static URI |
OWL.DeprecatedProperty
Here, a specific identifier is said to be of type or
owl:DeprecatedProperty, which is a subclass of rdf:Property.
|
static URI |
OWL.differentFrom |
static URI |
OWL.disjointWith |
static URI |
OWL.distinctMembers |
static URI |
RDFS.domain |
static URI |
OWL.equivalentClass |
static URI |
OWL.equivalentProperty |
static URI |
RDF.first |
static URI |
OWL.FunctionalProperty |
static URI |
OWL.hasValue |
static URI |
OWL.imports
An owl:imports statement references another OWL ontology containing
definitions, whose meaning is considered to be part of the meaning of
the importing ontology.
|
static URI |
OWL.incompatibleWith
An owl:incompatibleWith statement contains a reference to another
ontology.
|
static URI |
OWL.intersectionOf |
static URI |
OWL.InverseFunctionalProperty |
static URI |
OWL.inverseOf |
static URI |
RDFS.isDefinedBy |
static URI |
RDFS.label |
static URI |
RDF.List |
static URI |
RDFS.Literal
http://www.w3.org/2000/01/rdf-schema#Literal
|
static URI |
OWL.maxCardinality
A restriction containing an owl:maxCardinality constraint describes a
class of all individuals that have at most N semantically distinct values
(individuals or data values) for the property concerned, where N is the
value of the cardinality constraint.
|
static URI |
RDFS.member |
static URI |
OWL.minCardinality
A restriction containing an owl:minCardinality constraint describes a
class of all individuals that have at least N semantically distinct
values (individuals or data values) for the property concerned, where N
is the value of the cardinality constraint.
|
static URI |
RDF.nil |
static URI |
OWL.Nothing
The class with identifier owl:Nothing is the empty class.
|
static URI |
RDF.object |
static URI |
OWL.ObjectProperty |
static URI |
OWL.oneOf |
static URI |
OWL.onProperty
A restriction class should have exactly one triple linking the
restriction to a particular property, using the owl:onProperty property.
|
static URI |
OWL.Ontology
An OWL ontology contains a sequence of annotations, axioms, and facts.
|
static URI |
OWL.OntologyProperty
OWL has a built-in class owl:OntologyProperty.
|
static URI |
RDF.predicate |
static URI |
OWL.priorVersion
An owl:priorVersion statement contains a reference to another ontology.
|
static URI |
RDF.Property |
static URI |
RDFS.range |
static URI |
RDFS.Resource
http://www.w3.org/2000/01/rdf-schema#Resource *
|
static URI |
RDF.rest |
static URI |
OWL.Restriction
A property restriction is a special kind of class description.
|
static URI |
OWL.sameAs |
static URI |
RDFS.seeAlso |
static URI |
RDF.Seq |
static URI |
OWL.someValuesFrom |
static URI |
RDF.Statement |
static URI |
RDFS.subClassOf |
static URI |
RDF.subject |
static URI |
RDFS.subPropertyOf |
static URI |
OWL.SymmetricProperty |
static URI |
OWL.Thing
The class with identifier owl:Thing is the class of all individuals.
|
static URI |
OWL.TransitiveProperty |
static URI |
RDF.type |
static URI |
OWL.unionOf |
static URI |
RDF.value |
static URI |
OWL.versionInfo
An owl:versionInfo statement generally has as its object a string giving
information about this version, for example RCS/CVS keywords.
|
static URI |
RDF.XMLLiteral |
static URI |
RDFS.XMLLiteral
Deprecated.
This belongs to the 'rdf' namespace now
|
Modifier and Type | Method and Description |
---|---|
static URI |
RDF.li(int i) |
protected static URI |
RDF.toURI(String local) |
protected static URI |
OWL.toURI(String local) |
protected static URI |
XSD.toURI(String local) |
protected static URI |
RDFS.toURI(String local) |
Modifier and Type | Field and Description |
---|---|
static URI |
Protege.ALLOWED_CLASSES |
static URI |
NRL.CARDINALITY |
static URI |
NRL.INVERSE_PROPERTY |
static URI |
NRL.MAX_CARDINALITY |
static URI |
Protege.MAX_CARDINALITY |
static URI |
Protege.MAX_VALUE |
static URI |
NRL.MIN_CARDINALITY |
static URI |
Protege.MIN_CARDINALITY |
static URI |
Protege.MIN_VALUE |
static URI |
Protege.OVERRIDDEN_PROPERTY |
static URI |
Protege.OVERRIDING_PROPERTY |
Modifier and Type | Field and Description |
---|---|
Set<URI> |
JModel.knownProperties |
Modifier and Type | Method and Description |
---|---|
URI |
JMapped.getMappedTo() |
Constructor and Description |
---|
JClass(JPackage packagge,
String name,
URI mappedTo)
creating a class adds it to the package the only constructor:
|
JMapped(String name,
URI mappedTo)
the constructor:
|
JProperty(JClass clazz,
String name,
URI mappedTo)
constructor without cardinalities
|
JProperty(JClass clazz,
String name,
URI mappedTo,
int minCardinality,
int maxCardinality)
constructor with all parameters
|
Modifier and Type | Field and Description |
---|---|
protected URI |
ReactorBaseImpl.classURI
the URI of the RDFS class from which this object is an instance
|
protected URI |
ReactorRuntimeEntity.classURI
the URI of the RDFS class from which this object is an instance
|
Modifier and Type | Method and Description |
---|---|
URI |
ReactorRuntimeEntity.asURI() |
URI |
ReactorBaseImpl.getRDFSClassURI() |
URI |
ReactorBase.getRDFSClassURI() |
URI |
ReactorRuntimeEntity.getRDFSClassURI() |
Modifier and Type | Method and Description |
---|---|
static void |
Base.add(Model model,
Resource resourceSubject,
URI propertyURI,
Object value) |
static void |
BridgeBase.add(Model model,
Resource subject,
URI property,
Object object)
Add a value to a property of a resource.
|
static void |
Base.add(Model model,
Resource resourceSubject,
URI propertyURI,
Object value,
int maxCardinality) |
boolean |
ReactorBaseImpl.add(URI property,
Object object)
Adds a statement (this, prop, o).
|
boolean |
ReactorBase.add(URI prop,
Object o)
Adds a statement (this, prop, o).
|
boolean |
ReactorBaseImpl.add(URI property,
Object object,
int maxCard)
Adds a statement (this, prop, o) if the number of statements matching
(this, prop, x) is less then maxCard
|
boolean |
ReactorBase.add(URI prop,
Object o,
int maxCard)
Adds a statement (this, prop, o) if the number of statements matching
(this, prop, x) is less then maxCard
|
void |
NewBridge.addAllValues(Model model,
Resource subject,
URI propertyURI,
Object[] values) |
static boolean |
Bridge.addValue(Model model,
Resource o,
URI propertyURI,
Object value)
Add a value to the property of an object after checking if the object
already had the property with the same value.
|
boolean |
NewBridge.addValue(Model model,
Resource o,
URI propertyURI,
Object value) |
static boolean |
ResourceUtils.containsAnyValue(Model model,
Resource resource,
URI propertyURI)
Check if the resource identified by resourceID, has a property
identidified by propertyURI which has at least one value.
|
static boolean |
BridgeBase.containsGivenValue(Model model,
Resource resource,
URI propertyURI,
Object value)
Check if the resource identified by resourceID, has a property
identidified by propertyURI which has the given value among its values.
|
static boolean |
Bridge.containsInstance(Model model,
URI classURI)
Check if the model contains an instance of the given RDFS/OWL schema
class.
|
boolean |
NewBridge.containsInstance(Model model,
URI classURI) |
static long |
Base.countPropertyValues(Model model,
Resource resourceSubject,
URI propertyURI) |
static void |
Base.createInstance(Model model,
URI classURI,
Resource resourceSubject) |
static void |
Base.deleteInstance(Model model,
URI rdfsClass,
Resource resource)
Removes rdf:type rdfsClass
|
static Node |
Base.get_asNode(Model model,
Resource instanceResource,
URI propertyURI) |
static Object |
Base.get(Model model,
Resource resourceSubject,
URI propertyURI,
Class<?> returnType) |
Object |
ReactorBaseImpl.get(URI prop,
Class<?> returnType)
Returns the first x in (this, prop, x) if such a statement is in the
model.
|
Object |
ReactorBase.get(URI prop,
Class<?> returnType)
This method is useful for functional properties.
|
static <T> ReactorResult<T> |
Base.getAll_as(Model model,
Resource resourceSubject,
URI propertyURI,
Class<T> returnType) |
static <T> T[] |
Base.getAll_asArray(Model model,
Resource resourceSubject,
URI propertyURI,
Class<T> returnType) |
static <T> List<T> |
Base.getAll_asList(Model model,
Resource resourceSubject,
URI propertyURI,
Class<T> returnType)
Convenience method for ClosableIterator
|
static ClosableIterator<Node> |
Base.getAll_asNode(Model model,
Resource resourceSubject,
URI propertyURI) |
static List<Node> |
Base.getAll_asNodeList(Model model,
Resource resourceSubject,
URI propertyURI) |
Set<Object> |
ReactorBaseImpl.getAll_AsSet(URI prop,
Class<?> returnType)
Get all values for the given property of this resource instance as a Set.
|
static <T> ReactorResult<T> |
Base.getAll_Inverse_as(Model model,
URI propertyURI,
Object value,
Class<T> returnType) |
static ClosableIterator<Resource> |
Base.getAll_Inverse(Model model,
URI propertyURI,
Object value) |
Object[] |
ReactorBaseImpl.getAll_Inverse(URI property,
Node o,
Class<?> returnType)
Get all resources having the given property and value.
|
static <T> ClosableIterator<T> |
Base.getAll(Model model,
Resource resourceSubject,
URI propertyURI,
Class<T> returnType) |
Object[] |
ReactorBaseImpl.getAll(URI prop,
Class<?> returnType)
Returns an array of x with (this, prop, x) if such statements are in the
model.
|
Object[] |
ReactorBase.getAll(URI prop,
Class<?> returnType)
Get all predicates x of triples matching (this, prop, x)
|
static <T> ReactorResult<T> |
Base.getAllInstances_as(Model model,
URI classURI,
Class<T> returnType) |
static <T> T[] |
Base.getAllInstances_asArray(Model model,
URI classURI,
Class<T> returnType) |
static <T> List<T> |
Base.getAllInstances_asList(Model model,
URI classURI,
Class<T> returnType) |
static <T> ClosableIterator<T> |
Base.getAllInstances(Model model,
URI classURI,
Class<T> returnType)
Return all instances of the given class.
|
static Iterator<?> |
ReactorBaseImpl.getAllInstancesAsIterator(Model model,
Class javaClass,
URI classURI)
Return all instances of the given class as a SubjectResultIterator
object.
|
static Set<Object> |
BridgeBase.getAllValues_asSet(Model model,
Resource resource,
URI propertyURI,
Class<?> returnType)
Return a Set with all x matching (resourceObject, propertyURI, x) in the
given model.
|
static Object[] |
BridgeBase.getAllValues_Inverse(Model model,
URI propertyURI,
Node objectNode,
Class<?> returnType)
Get all resources having the given property and value.
|
static Object[] |
BridgeBase.getAllValues(Model model,
Resource resource,
URI propertyURI,
Class<?> returnType)
Get all values for the given resource and property.
|
static Object |
ReactorBaseImpl.getInstance(Model model,
URI uri,
Class<?> javaClass) |
static Resource |
Base.getInverse(Model model,
URI propertyURI,
Object value) |
static Node |
ResourceUtils.getSingleValue(Model model,
Resource subject,
URI propertyURI) |
static Object |
BridgeBase.getValue(Model model,
Resource resourceSubject,
URI propertyURI,
Class<?> returnType)
Return the first x with matching statement (resourceObject, propertyURI,
x) from the given model.
|
static boolean |
Base.has(Model model,
Resource resourceSubject,
URI propertyURI) |
static boolean |
ReactorBaseImpl.hasInstance(Model model,
URI uri,
URI classURI) |
static boolean |
Base.hasValue(Model model,
Resource resourceSubject,
URI propertyURI) |
static boolean |
Base.hasValue(Model model,
Resource resourceSubject,
URI propertyURI,
Object value) |
boolean |
ReactorBaseImpl.hasValue(URI prop) |
boolean |
ReactorBaseImpl.hasValue(URI prop,
Object value) |
static boolean |
Bridge.isInstanceOf(Model model,
Resource instanceID,
URI classURI)
Check if a resource is an instance of a given RDFS/OWL class.
|
boolean |
NewBridge.isInstanceOf(Model model,
Resource subject,
URI classURI) |
boolean |
ReactorBaseImpl.isInstanceof(URI classURI)
Check if .this object is an instance of the given RDFS/OWL class URI.
|
boolean |
ReactorBase.isInstanceof(URI classURI) |
boolean |
ReactorRuntimeEntity.isInstanceof(URI classURI) |
static void |
Base.remove(Model model,
Resource resourceSubject,
URI propertyURI,
Object value) |
static void |
Base.remove(Model model,
Resource resourceSubject,
URI propertyURI,
Object value,
int minCardinality) |
boolean |
ReactorBaseImpl.remove(URI prop,
Object o)
Tries to remove a statement (this, prop, o).
|
boolean |
ReactorBase.remove(URI prop,
Object o)
Tries to remove a statement (this, prop, o).
|
boolean |
ReactorBaseImpl.remove(URI prop,
Object o,
int minCard)
Tries to remove a statement (this, prop, o) if the number of statements
matching (this, prop, x) in the model is less then minCard
|
boolean |
ReactorBase.remove(URI prop,
Object o,
int minCard)
Tries to remove a statement (this, prop, o) if the number of statements
matching (this, prop, x) in the model is less then minCard
|
static void |
Base.removeAll(Model model,
Resource resourceSubject,
URI propertyURI) |
boolean |
ReactorBaseImpl.removeAll(URI prop)
remove all (this, rdf:type, prop) statements
|
boolean |
ReactorBase.removeAll(URI prop)
Remove all values of this property (same as remove(this, prop, *)
|
boolean |
NewBridge.removeAllValues(Model model,
Resource subject,
URI propertyURI) |
static boolean |
BridgeBase.removeAllValues(Model model,
Resource r,
URI p)
Remove all values of a property from a resource.
|
boolean |
NewBridge.removeAllValues(Model model,
Resource subject,
URI propertyURI,
Object[] values) |
boolean |
NewBridge.removeValue(Model model,
Resource subject,
URI propertyURI,
Object value) |
static void |
Base.set(Model model,
Resource resourceSubject,
URI propertyURI,
Object value) |
void |
ReactorBaseImpl.set(URI prop,
Object o)
Removes all statements (this, prop, x) and set one anew: (this, prop, o).
|
void |
ReactorBase.set(URI prop,
Object o)
Removes all statements (this, prop, x) and set one anew: (this, prop, o).
|
void |
ReactorBaseImpl.setAll(URI prop,
Object[] o)
Removes all statements (this, prop, x) and sets anew: (this, prop, o[0]),
(this, prop, o[1]), ...
|
void |
ReactorBase.setAll(URI prop,
Object[] o)
Removes all statements (this, prop, x) and sets anew: (this, prop, o[0]),
(this, prop, o[1]), ...
|
void |
ReactorBaseImpl.setAll(URI prop,
Object[] o,
int maxCard)
Removes all statements (this, prop, x) and sets anew: (this, prop, o[0]),
(this, prop, o[1]), ...
|
void |
ReactorBase.setAll(URI prop,
Object[] o,
int maxCard)
Removes all statements (this, prop, x) and sets anew: (this, prop, o[0]),
(this, prop, o[1]), ...
|
static void |
Bridge.setAllValue(Model model,
Resource subject,
URI prop,
Object[] o)
Set the value of a property from a resource after removing all existing
values of the property from that resource.
|
void |
NewBridge.setAllValues(Model model,
Resource subject,
URI propertyURI,
Object[] values) |
static void |
Bridge.setValue(Model model,
Resource resourceObject,
URI propertyURI,
Object value)
Set the value(s) of a property of an object, after removing all values of
the property from the object
|
void |
NewBridge.setValue(Model model,
Resource resourceObject,
URI propertyURI,
Object value) |
boolean |
ReactorBaseImpl.update(URI prop,
Object oldValue,
Object newValue)
Looks for a statement (this, prop, oldValue) and replaces it by a new
statement (this, prop, newValue).
|
boolean |
ReactorBase.update(URI prop,
Object oldValue,
Object newValue)
Looks for a statement (this, prop, oldValue) and replaces it by a new
statement (this, prop, newValue).
|
static boolean |
Bridge.updateValue(Model model,
BlankNode blankNode,
URI propertyURI,
Object _old,
Object _new)
Update the value of a property from a resource.
|
static Boolean |
Bridge.updateValue(Model model,
Resource resourceIdentifier,
URI propertyURI,
Object _old,
Object _new)
Update the value of a property from a resource.
|
boolean |
NewBridge.updateValue(Model model,
Resource subject,
URI propertyURI,
Object oldValue,
Object newValue) |
Constructor and Description |
---|
ReactorBaseImpl(Model model,
URI classURI,
Resource instanceIdentifier)
Constructor: create a ReactorBaseImpl for the RDFS/OWL schema class
identified by classURI, with instanceIdentifier as the identifing URL or
BlankNode.
|
ReactorBaseImpl(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Constructor: create a ReactorBaseImpl for the RDFS/OWL schema class
identified by classURI, with instanceIdentifier as the identifing URL or
BlankNode.
|
ReactorRuntimeEntity(Model model,
URI classURI,
Resource instanceIdentifier)
Constructor: create a ReactorBaseImpl for the RDFS/OWL schema class
identified by classURI, with instanceIdentifier as the identifing URL or
BlankNode.
|
ReactorRuntimeEntity(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Constructor: create a ReactorBaseImpl for the RDFS/OWL schema class
identified by classURI, with instanceIdentifier as the identifing URL or
BlankNode.
|
Modifier and Type | Method and Description |
---|---|
URI |
UriConverter.toJava(Node node) |
Modifier and Type | Field and Description |
---|---|
static URI |
OWL_Protege_NRL_Restriction.ALLVALUESFROM
http://www.w3.org/2002/07/owl#allValuesFrom
|
static URI |
OWL_Protege_NRL_Restriction.CARDINALITY
http://www.w3.org/2002/07/owl#cardinality
|
static URI |
Resource.COMMENT
http://www.w3.org/2000/01/rdf-schema#comment
|
static URI |
Property.DOMAIN
http://www.w3.org/2000/01/rdf-schema#domain
|
static URI |
OWL_Protege_NRL_Restriction.HASVALUE
http://www.w3.org/2002/07/owl#hasValue
|
static URI |
Resource.ISDEFINEDBY
http://www.w3.org/2000/01/rdf-schema#isDefinedBy
|
static URI |
Resource.LABEL
http://www.w3.org/2000/01/rdf-schema#label
|
static URI[] |
Property.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Class.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Resource.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
OwlClass.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
OWL_Protege_NRL_Restriction.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
DeprecatedProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI |
OWL_Protege_NRL_Restriction.MAXCARDINALITY
http://www.w3.org/2002/07/owl#maxCardinality
|
static URI |
Resource.MEMBER
http://www.w3.org/2000/01/rdf-schema#member
|
static URI |
OWL_Protege_NRL_Restriction.MINCARDINALITY
http://www.w3.org/2002/07/owl#minCardinality
|
static URI |
OwlClass.ONEOF
http://www.w3.org/2002/07/owl#oneOf
|
static URI |
OWL_Protege_NRL_Restriction.ONPROPERTY
http://www.w3.org/2002/07/owl#onProperty
|
static URI |
Property.RANGE
http://www.w3.org/2000/01/rdf-schema#range
|
static URI |
Property.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
static URI |
Class.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Class
|
static URI |
Resource.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Resource
|
static URI |
OwlClass.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Class
|
static URI |
OWL_Protege_NRL_Restriction.RDFS_CLASS
http://www.w3.org/2002/07/owl#Restriction
|
static URI |
DeprecatedProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#DeprecatedProperty
|
static URI |
Resource.SEEALSO
http://www.w3.org/2000/01/rdf-schema#seeAlso
|
static URI |
OWL_Protege_NRL_Restriction.SOMEVALUESFROM
http://www.w3.org/2002/07/owl#someValuesFrom
|
static URI |
Class.SUBCLASSOF
http://www.w3.org/2000/01/rdf-schema#subClassOf
|
static URI |
OwlClass.SUBCLASSOF
http://www.w3.org/2000/01/rdf-schema#subClassOf
|
static URI |
Property.SUBPROPERTYOF
http://www.w3.org/2000/01/rdf-schema#subPropertyOf
|
static URI |
Resource.TYPE
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
|
static URI |
Resource.VALUE
http://www.w3.org/1999/02/22-rdf-syntax-ns#value
|
Modifier and Type | Method and Description |
---|---|
static DeprecatedProperty |
DeprecatedProperty.getInstance(Model model,
URI uri) |
static boolean |
DeprecatedProperty.hasInstance(Model model,
URI uri) |
Constructor and Description |
---|
Class(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
DeprecatedProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
OWL_Protege_NRL_Restriction(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
OwlClass(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Property(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Resource(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Modifier and Type | Field and Description |
---|---|
static URI |
Restriction.ALLVALUESFROM
http://www.w3.org/2002/07/owl#allValuesFrom
|
static URI |
Ontology.BACKWARDCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#backwardCompatibleWith
|
static URI |
Restriction.CARDINALITY
http://www.w3.org/2002/07/owl#cardinality
|
static URI |
OwlClass.COMPLEMENTOF
http://www.w3.org/2002/07/owl#complementOf
|
static URI |
OwlThing.DIFFERENTFROM
http://www.w3.org/2002/07/owl#differentFrom
|
static URI |
OwlClass.DISJOINTWITH
http://www.w3.org/2002/07/owl#disjointWith
|
static URI |
AllDifferent.DISTINCTMEMBERS
http://www.w3.org/2002/07/owl#distinctMembers
|
static URI |
OwlProperty.DOMAIN
http://www.w3.org/2000/01/rdf-schema#domain
|
static URI |
OwlClass.EQUIVALENTCLASS
http://www.w3.org/2002/07/owl#equivalentClass
|
static URI |
OwlThing.EQUIVALENTPROPERTY
http://www.w3.org/2002/07/owl#equivalentProperty
|
static URI |
Restriction.HASVALUE
http://www.w3.org/2002/07/owl#hasValue
|
static URI |
Ontology.IMPORTS
http://www.w3.org/2002/07/owl#imports
|
static URI |
Ontology.INCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#incompatibleWith
|
static URI |
OwlClass.INTERSECTIONOF
http://www.w3.org/2002/07/owl#intersectionOf
|
static URI |
ObjectProperty.INVERSEOF
http://www.w3.org/2002/07/owl#inverseOf
|
static URI[] |
FunctionalProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Ontology.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
AnnotationProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
DatatypeProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
AllDifferent.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
DeprecatedClass.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
OwlProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
OwlThing.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
TransitiveProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
ObjectProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Restriction.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
OwlClass.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
InverseFunctionalProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
OntologyProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
DataRange.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
DeprecatedProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
SymmetricProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Nothing.MANAGED_URIS
all property-URIs with this class as domain
|
static URI |
Restriction.MAXCARDINALITY
http://www.w3.org/2002/07/owl#maxCardinality
|
static URI |
Restriction.MINCARDINALITY
http://www.w3.org/2002/07/owl#minCardinality
|
static URI |
OwlClass.ONEOF
http://www.w3.org/2002/07/owl#oneOf
|
static URI |
Restriction.ONPROPERTY
http://www.w3.org/2002/07/owl#onProperty
|
static URI |
Ontology.PRIORVERSION
http://www.w3.org/2002/07/owl#priorVersion
|
static URI |
OwlProperty.RANGE
http://www.w3.org/2000/01/rdf-schema#range
|
static URI |
FunctionalProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#FunctionalProperty
|
static URI |
Ontology.RDFS_CLASS
http://www.w3.org/2002/07/owl#Ontology
|
static URI |
AnnotationProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#AnnotationProperty
|
static URI |
DatatypeProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#DatatypeProperty
|
static URI |
AllDifferent.RDFS_CLASS
http://www.w3.org/2002/07/owl#AllDifferent
|
static URI |
DeprecatedClass.RDFS_CLASS
http://www.w3.org/2002/07/owl#DeprecatedClass
|
static URI |
OwlProperty.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
static URI |
OwlThing.RDFS_CLASS
http://www.w3.org/2002/07/owl#Thing
|
static URI |
TransitiveProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#TransitiveProperty
|
static URI |
ObjectProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#ObjectProperty
|
static URI |
Restriction.RDFS_CLASS
http://www.w3.org/2002/07/owl#Restriction
|
static URI |
OwlClass.RDFS_CLASS
http://www.w3.org/2002/07/owl#Class
|
static URI |
InverseFunctionalProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#InverseFunctionalProperty
|
static URI |
OntologyProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#OntologyProperty
|
static URI |
DataRange.RDFS_CLASS
http://www.w3.org/2002/07/owl#DataRange
|
static URI |
DeprecatedProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#DeprecatedProperty
|
static URI |
SymmetricProperty.RDFS_CLASS
http://www.w3.org/2002/07/owl#SymmetricProperty
|
static URI |
Nothing.RDFS_CLASS
http://www.w3.org/2002/07/owl#Nothing
|
static URI |
OwlThing.SAMEAS
http://www.w3.org/2002/07/owl#sameAs
|
static URI |
Restriction.SOMEVALUESFROM
http://www.w3.org/2002/07/owl#someValuesFrom
|
static URI |
OwlClass.SUBCLASSOF
http://www.w3.org/2000/01/rdf-schema#subClassOf
|
static URI |
OwlProperty.SUBPROPERTYOF
http://www.w3.org/2000/01/rdf-schema#subPropertyOf
|
static URI |
OwlClass.UNIONOF
http://www.w3.org/2002/07/owl#unionOf
|
static URI |
OwlThing.VERSIONINFO
http://www.w3.org/2002/07/owl#versionInfo
|
Constructor and Description |
---|
AllDifferent(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
AnnotationProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
DataRange(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
DatatypeProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
DeprecatedClass(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
DeprecatedProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
FunctionalProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
InverseFunctionalProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Nothing(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
ObjectProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Ontology(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
OntologyProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
OwlClass(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
OwlProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
OwlThing(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Restriction(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
SymmetricProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
TransitiveProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Modifier and Type | Field and Description |
---|---|
static URI |
Resource.COMMENT
http://www.w3.org/2000/01/rdf-schema#comment
|
static URI |
Property.DOMAIN
http://www.w3.org/2000/01/rdf-schema#domain
|
static URI |
List.FIRST
http://www.w3.org/1999/02/22-rdf-syntax-ns#first
|
static URI |
Resource.ISDEFINEDBY
http://www.w3.org/2000/01/rdf-schema#isDefinedBy
|
static URI |
Resource.LABEL
http://www.w3.org/2000/01/rdf-schema#label
|
static URI[] |
Ontology.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Container.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Bag.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Datatype.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Statement.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Alt.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
List.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Property.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Class.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Seq.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
Resource.MANAGED_URIS
all property-URIs with this class as domain
|
static URI[] |
ContainerMembershipProperty.MANAGED_URIS
all property-URIs with this class as domain
|
static URI |
Resource.MEMBER
http://www.w3.org/2000/01/rdf-schema#member
|
static URI |
Statement.OBJECT
http://www.w3.org/1999/02/22-rdf-syntax-ns#object
|
static URI |
Statement.PREDICATE
http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate
|
static URI |
Property.RANGE
http://www.w3.org/2000/01/rdf-schema#range
|
static URI |
Ontology.RDFS_CLASS
http://www.w3.org/2002/07/owl#Ontology
|
static URI |
Container.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Container
|
static URI |
Bag.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag
|
static URI |
Datatype.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Datatype
|
static URI |
Statement.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement
|
static URI |
Alt.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt
|
static URI |
List.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#List
|
static URI |
Property.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
static URI |
Class.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Class
|
static URI |
Seq.RDFS_CLASS
http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
|
static URI |
Resource.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#Resource
|
static URI |
ContainerMembershipProperty.RDFS_CLASS
http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty
|
static URI |
List.REST
http://www.w3.org/1999/02/22-rdf-syntax-ns#rest
|
static URI |
Resource.SEEALSO
http://www.w3.org/2000/01/rdf-schema#seeAlso
|
static URI |
Class.SUBCLASSOF
http://www.w3.org/2000/01/rdf-schema#subClassOf
|
static URI |
Statement.SUBJECT
http://www.w3.org/1999/02/22-rdf-syntax-ns#subject
|
static URI |
Property.SUBPROPERTYOF
http://www.w3.org/2000/01/rdf-schema#subPropertyOf
|
static URI |
Resource.TYPE
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
|
static URI |
Resource.VALUE
http://www.w3.org/1999/02/22-rdf-syntax-ns#value
|
Constructor and Description |
---|
Alt(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Bag(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Class(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Container(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
ContainerMembershipProperty(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Datatype(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
List(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Ontology(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Property(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Resource(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Seq(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Statement(Model model,
URI classURI,
Resource instanceIdentifier,
boolean write)
Returns a Java wrapper over an RDF object, identified by URI.
|
Modifier and Type | Field and Description |
---|---|
protected URI |
RepositoryModel.context |
Modifier and Type | Method and Description |
---|---|
URI |
RepositoryModelSet.createURI(String uriString) |
URI |
StatementWrapper.getContext() |
URI |
RepositoryModel.getContextURI() |
URI |
StatementWrapper.getPredicate() |
static URI |
ConversionUtil.toRdf2go(org.openrdf.model.URI uri) |
Modifier and Type | Method and Description |
---|---|
ClosableIterator<URI> |
RepositoryModelSet.getModelURIs() |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryModelSet.addModel(Model model,
URI contextURI) |
void |
RepositoryModel.addStatement(Resource subject,
URI predicate,
Node object) |
boolean |
RepositoryModelSet.containsModel(URI contextURI) |
Model |
RepositoryModelFactory.createModel(URI contextURI) |
Model |
RepositoryModelSet.getModel(URI contextURI) |
boolean |
RepositoryModelSet.removeModel(URI contextURI) |
void |
RepositoryModel.removeStatement(Resource subject,
URI predicate,
Node object) |
static org.openrdf.model.URI |
ConversionUtil.toOpenRDF(URI uri,
org.openrdf.model.ValueFactory factory) |
Constructor and Description |
---|
RepositoryModel(URI context,
org.openrdf.repository.Repository repository) |
Copyright © 2005–2018 IT-Consulting Dr. Max Völkel | Project started at FZI Forschungszentrum Informatik, www.fzi.de. All rights reserved.