Modifier and Type | Method and Description |
---|---|
IRI |
IsolationLevels.getURI() |
IRI |
IsolationLevel.getURI()
Get a URI uniquely representing this isolation level.
|
Modifier and Type | Method and Description |
---|---|
void |
RDF4JProtocolSession.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
static IRI |
Protocol.decodeURI(String encodedValue,
ValueFactory valueFactory)
Decode a previously encoded URI.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TransactionWriter.serialize(IRI uri,
XMLWriter xmlWriter) |
Modifier and Type | Method and Description |
---|---|
IRI |
StatementOperation.getPredicate() |
Modifier and Type | Method and Description |
---|---|
void |
StatementOperation.setPredicate(IRI predicate) |
Constructor and Description |
---|
AddStatementOperation(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Create an AddStatementOperation.
|
RemoveStatementsOperation(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Creates a RemoveStatementsOperation.
|
Modifier and Type | Method and Description |
---|---|
void |
LuceneSpinSailConnection.addStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
LuceneSpinSailConnection.removeStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and object from the repository.
|
Modifier and Type | Method and Description |
---|---|
IRI |
ValueFactory.createIRI(String iri)
Creates a new IRI from the supplied string-representation.
|
IRI |
ValueFactory.createIRI(String namespace,
String localName)
Creates a new IRI from the supplied namespace and local name.
|
IRI |
Literal.getDatatype()
Gets the datatype for this literal.
|
IRI |
Statement.getPredicate()
Gets the predicate of this statement.
|
Modifier and Type | Method and Description |
---|---|
default Optional<IRI> |
Model.objectIRI()
Deprecated.
since 2.0. Instead, use
Models#objectURI(Model) to retrieve an object URI value, and/or use
the size of the set returned by Model.objects() to verify if the object is unique. |
default Optional<IRI> |
Model.objectURI()
Deprecated.
use
Model.objectIRI() instead. |
Set<IRI> |
Model.predicates()
Returns a
Set view of the predicates contained in this model. |
default Optional<IRI> |
Model.subjectIRI()
Deprecated.
since 2.0. Instead, use
Models#subjectURI(Model) to retrieve a subject URI, and/or use the
size of the set returned by Model.subjects() to verify if the subject is unique. |
default Optional<IRI> |
Model.subjectURI()
Deprecated.
use
Model.subjectIRI() instead. |
Modifier and Type | Method and Description |
---|---|
boolean |
Model.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the model.
|
boolean |
Graph.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
Adds one or more statements to the graph.
|
boolean |
Model.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Determines if statements with the specified subject, predicate, object and (optionally) context exist in this
model.
|
Literal |
ValueFactory.createLiteral(String label,
IRI datatype)
Creates a new literal with the supplied label and datatype.
|
Statement |
ValueFactory.createStatement(Resource subject,
IRI predicate,
Value object)
Creates a new statement with the supplied subject, predicate and object.
|
Statement |
ValueFactory.createStatement(Resource subject,
IRI predicate,
Value object,
Resource context)
Creates a new statement with the supplied subject, predicate and object and associated context.
|
Model |
Model.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Returns a view of the statements with the specified subject, predicate, object and (optionally) context.
|
Iterator<Statement> |
Graph.match(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
The preferred alternative is
Model.filter(org.eclipse.rdf4j.model.Resource, org.eclipse.rdf4j.model.IRI, org.eclipse.rdf4j.model.Value, org.eclipse.rdf4j.model.Resource...) .iterator(). |
boolean |
Model.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Removes statements with the specified subject, predicate, object and (optionally) context exist in this model.
|
Modifier and Type | Method and Description |
---|---|
static IRI |
XMLDatatypeUtil.qnameToURI(QName qname)
Maps a datatype QName from the javax.xml.namespace package to an XML Schema URI for the corresponding datatype.
|
Modifier and Type | Method and Description |
---|---|
static int |
XMLDatatypeUtil.compare(String value1,
String value2,
IRI datatype) |
static boolean |
XMLDatatypeUtil.isBuiltInDatatype(IRI datatype)
Checks whether the supplied datatype is a built-in XML Schema datatype.
|
static boolean |
XMLDatatypeUtil.isCalendarDatatype(IRI datatype)
Checks whether the supplied datatype is equal to xsd:dateTime, xsd:date, xsd:time, xsd:gYearMonth, xsd:gMonthDay,
xsd:gYear, xsd:gMonth or xsd:gDay.
|
static boolean |
XMLDatatypeUtil.isDecimalDatatype(IRI datatype)
Checks whether the supplied datatype is equal to xsd:decimal or one of the built-in datatypes that is derived
from xsd:decimal.
|
static boolean |
XMLDatatypeUtil.isDerivedDatatype(IRI datatype)
Checks whether the supplied datatype is a derived XML Schema datatype.
|
static boolean |
XMLDatatypeUtil.isDurationDatatype(IRI datatype)
Checks whether the supplied datatype is equal to xsd:duration, xsd:dayTimeDuration, xsd:yearMonthDuration.
|
static boolean |
XMLDatatypeUtil.isFloatingPointDatatype(IRI datatype)
Checks whether the supplied datatype is equal to xsd:float or xsd:double.
|
static boolean |
XMLDatatypeUtil.isIntegerDatatype(IRI datatype)
Checks whether the supplied datatype is equal to xsd:integer or one of the built-in datatypes that is derived
from xsd:integer.
|
static boolean |
XMLDatatypeUtil.isNumericDatatype(IRI datatype)
Checks whether the supplied datatype is a numeric datatype, i.e.
|
static boolean |
XMLDatatypeUtil.isOrderedDatatype(IRI datatype)
Checks whether the supplied datatype is ordered.
|
static boolean |
XMLDatatypeUtil.isPrimitiveDatatype(IRI datatype)
Checks whether the supplied datatype is a primitive XML Schema datatype.
|
static boolean |
XMLDatatypeUtil.isValidValue(String value,
IRI datatype)
Verifies if the supplied lexical value is valid for the given datatype.
|
static String |
XMLDatatypeUtil.normalize(String value,
IRI datatype)
Normalizes the supplied value according to the normalization rules for the supplied datatype.
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleIRI
The default implementation of the
IRI interface. |
class |
URIImpl
Deprecated.
since 2.0. Use
SimpleIRI instead for extending, and ValueFactory for instantiation. |
Modifier and Type | Field and Description |
---|---|
protected IRI |
FilteredModel.pred |
Modifier and Type | Method and Description |
---|---|
IRI |
ValidatingValueFactory.createIRI(String iri) |
IRI |
AbstractValueFactory.createIRI(String iri) |
IRI |
ValidatingValueFactory.createIRI(String namespace,
String localName) |
IRI |
AbstractValueFactory.createIRI(String namespace,
String localName) |
IRI |
SimpleLiteral.getDatatype() |
IRI |
SimpleStatement.getPredicate() |
Modifier and Type | Method and Description |
---|---|
Set<IRI> |
AbstractModel.predicates() |
Modifier and Type | Method and Description |
---|---|
boolean |
TreeModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
GraphImpl.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
FilteredModel.add(Resource s,
IRI p,
Value o,
Resource... c) |
boolean |
EmptyModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.contains(Resource s,
IRI p,
Value o,
Resource... c) |
boolean |
EmptyModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected Literal |
AbstractValueFactory.createFPLiteral(Number value,
IRI datatype)
Calls
AbstractValueFactory.createNumericLiteral(Number, IRI) with the supplied value and datatype as parameters. |
protected Literal |
AbstractValueFactory.createIntegerLiteral(Number value,
IRI datatype)
Calls
AbstractValueFactory.createNumericLiteral(Number, IRI) with the supplied value and datatype as parameters. |
Literal |
ValidatingValueFactory.createLiteral(String label,
IRI datatype) |
Literal |
AbstractValueFactory.createLiteral(String value,
IRI datatype) |
protected Literal |
AbstractValueFactory.createNumericLiteral(Number number,
IRI datatype)
Creates specific optimized subtypes of SimpleLiteral for numeric datatypes.
|
Statement |
ValidatingValueFactory.createStatement(Resource subject,
IRI predicate,
Value object) |
Statement |
AbstractValueFactory.createStatement(Resource subject,
IRI predicate,
Value object) |
Statement |
ValidatingValueFactory.createStatement(Resource subject,
IRI predicate,
Value object,
Resource context) |
Statement |
AbstractValueFactory.createStatement(Resource subject,
IRI predicate,
Value object,
Resource context) |
Model |
TreeModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Model |
LinkedHashModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Model |
FilteredModel.filter(Resource s,
IRI p,
Value o,
Resource... c) |
Model |
EmptyModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Iterator<Statement> |
GraphImpl.match(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
|
Iterator<Statement> |
AbstractModel.match(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
TreeModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.remove(Resource s,
IRI p,
Value o,
Resource... c) |
boolean |
EmptyModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected abstract void |
FilteredModel.removeFilteredTermIteration(Iterator<Statement> iter,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Called by aggregate sets when a term has been removed from a term iterator.
|
void |
TreeModel.removeTermIteration(Iterator<Statement> iterator,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
FilteredModel.removeTermIteration(Iterator<Statement> iter,
Resource s,
IRI p,
Value o,
Resource... c) |
void |
EmptyModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
abstract void |
AbstractModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Called by aggregate sets when a term has been removed from a term iterator.
|
void |
LinkedHashModel.removeTermIteration(Iterator iterator,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected void |
SimpleLiteral.setDatatype(IRI datatype) |
Constructor and Description |
---|
ContextStatement(Resource subject,
IRI predicate,
Value object,
Resource context)
Creates a new Statement with the supplied subject, predicate and object for the specified associated context.
|
DecimalLiteral(BigDecimal value,
IRI datatype)
Creates a literal with the specified value and datatype.
|
FilteredModel(AbstractModel model,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
IntegerLiteral(BigInteger value,
IRI datatype)
Creates a literal with the specified value and datatype.
|
NumericLiteral(Number number,
IRI datatype)
Creates a literal with the specified value and datatype.
|
SimpleLiteral(String label,
IRI datatype)
Creates a new datyped literal with the supplied label and datatype.
|
SimpleStatement(Resource subject,
IRI predicate,
Value object)
Creates a new Statement with the supplied subject, predicate and object.
|
Modifier and Type | Method and Description |
---|---|
static IRI |
GraphUtil.getOptionalObjectURI(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectIRI() instead. |
static IRI |
GraphUtil.getOptionalSubjectURI(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.subjectIRI()
instead. |
static IRI |
GraphUtil.getUniqueObjectURI(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectIRI() instead. |
static IRI |
GraphUtil.getUniqueSubjectURI(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.subjectIRI()
instead. |
Modifier and Type | Method and Description |
---|---|
static Set<IRI> |
Vocabularies.getIRIs(Class vocabulary)
Get all the
IRIs of the classes and properties of a vocabulary. |
static Optional<IRI> |
Models.getPropertyIRI(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve a property value as an IRI for the supplied subject from the given model.
|
static Set<IRI> |
Models.getPropertyIRIs(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve all property IRI values for the supplied subject and property from the given model.
|
static Optional<IRI> |
Models.objectIRI(Model m)
Retrieves an object
IRI value from the statements in the given model. |
static Set<IRI> |
Models.objectIRIs(Model m)
Retrieves all object
IRI values from the statements in the given model. |
static Optional<IRI> |
Models.predicate(Model m)
Retrieves a predicate from the statements in the given model.
|
static Optional<IRI> |
Models.subjectIRI(Model m)
Retrieves a subject
IRI from the statements in the given model. |
static Set<IRI> |
Models.subjectIRIs(Model m)
Retrieves all subject
IRI s from the statements in the given model. |
Modifier and Type | Method and Description |
---|---|
ModelBuilder |
ModelBuilder.add(IRI predicate,
Object object)
Add an RDF statement with the predicate and object to the model, using the current subject and graph (either
named or default).
|
ModelBuilder |
ModelBuilder.add(Resource subject,
IRI predicate,
Object object)
Add an RDF statement with the given subject, predicate and object to the model, using the current graph (either
named or default).
|
ModelBuilder |
ModelBuilder.add(String subject,
IRI predicate,
Object object)
Add an RDF statement with the given subject, predicate and object to the model, using the current graph (either
named or default).
|
static void |
Statements.consume(ValueFactory vf,
Resource subject,
IRI predicate,
Value object,
java.util.function.Consumer<Statement> consumer,
Resource... contexts)
|
static <C extends Collection<Statement>> |
Statements.create(ValueFactory vf,
Resource subject,
IRI predicate,
Value object,
C collection,
Resource... contexts)
Creates one or more
Statement objects with the given subject, predicate and object, one for each given
context. |
Optional<Statement> |
GetStatementOptional.get(Resource subject,
IRI predicate,
Value object,
Resource... contexts)
Either supplies a statement matching the given pattern, or
Optional.empty() otherwise. |
static Iterator<Value> |
GraphUtil.getObjectIterator(Graph graph,
Resource subj,
IRI pred,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.objects()
instead. |
static Set<Value> |
GraphUtil.getObjects(Graph graph,
Resource subj,
IRI pred,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.objects()
instead. |
static Value |
GraphUtil.getOptionalObject(Graph graph,
Resource subj,
IRI pred,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectValue() instead. |
static Literal |
GraphUtil.getOptionalObjectLiteral(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectLiteral() instead. |
static Resource |
GraphUtil.getOptionalObjectResource(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectResource() instead. |
static IRI |
GraphUtil.getOptionalObjectURI(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectIRI() instead. |
static Resource |
GraphUtil.getOptionalSubject(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.subjectResource() instead. |
static IRI |
GraphUtil.getOptionalSubjectURI(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.subjectIRI()
instead. |
static Set<Value> |
Models.getProperties(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve all property values for the supplied subject and property from the given model.
|
static Optional<Value> |
Models.getProperty(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve a property value for the supplied subject from the given model.
|
static Optional<IRI> |
Models.getPropertyIRI(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve a property value as an IRI for the supplied subject from the given model.
|
static Set<IRI> |
Models.getPropertyIRIs(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve all property IRI values for the supplied subject and property from the given model.
|
static Optional<Literal> |
Models.getPropertyLiteral(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve a property value as a
Literal for the supplied subject from the given model. |
static Set<Literal> |
Models.getPropertyLiterals(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve all property Literal values for the supplied subject and property from the given model.
|
static Optional<Resource> |
Models.getPropertyResource(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve a property value as an IRI for the supplied subject from the given model.
|
static Set<Resource> |
Models.getPropertyResources(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve all property Resource values for the supplied subject and property from the given model.
|
static Optional<String> |
Models.getPropertyString(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve a property value as a String for the supplied subject from the given model.
|
static Set<String> |
Models.getPropertyStrings(Model m,
Resource subject,
IRI property,
Resource... contexts)
Retrieve all property values as Strings for the supplied subject and property from the given model.
|
static Iterator<Resource> |
GraphUtil.getSubjectIterator(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.subjects()
instead. |
static Set<Resource> |
GraphUtil.getSubjects(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.subjects()
instead. |
static Value |
GraphUtil.getUniqueObject(Graph graph,
Resource subj,
IRI pred,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectValue() instead. |
static Literal |
GraphUtil.getUniqueObjectLiteral(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectLiteral() instead. |
static Resource |
GraphUtil.getUniqueObjectResource(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectResource() instead. |
static IRI |
GraphUtil.getUniqueObjectURI(Graph graph,
Resource subj,
IRI pred)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.objectIRI() instead. |
static Resource |
GraphUtil.getUniqueSubject(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.subjectResource() instead. |
static IRI |
GraphUtil.getUniqueSubjectURI(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.filter(Resource, IRI, Value, Resource...) and Model.subjectIRI()
instead. |
static void |
GraphUtil.remove(Graph graph,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.remove(Resource, IRI, Value, Resource...) instead. |
static Model |
Models.setProperty(Model m,
Resource subject,
IRI property,
Value value,
Resource... contexts)
Sets the property value for the given subject to the given object value, replacing any existing value(s) for the
subject's property.
|
static void |
GraphUtil.setUniqueObject(Graph graph,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Models.setProperty(Model, Resource, IRI, Value, Resource...) instead. |
Modifier and Type | Field and Description |
---|---|
static IRI |
DCTERMS.ABSTRACT
http://purl.org/dc/terms/abstract
|
static IRI |
SPIN.ABSTRACT_PROPERTY
http://spinrdf.org/spin#abstract Can be set to true to indicate that this module shall not be instantiated.
|
static IRI |
SHACL.ABSTRACT_RESULT
sh:AbstractResult
|
static IRI |
DCTERMS.ACCESS_RIGHTS
http://purl.org/dc/terms/accessRights
|
static IRI |
DCAT.ACCESS_URL
dcat:accessURL
|
static IRI |
FOAF.ACCOUNT |
static IRI |
FOAF.ACCOUNT_NAME |
static IRI |
FOAF.ACCOUNT_SERVICE_HOMEPAGE |
static IRI |
DCTERMS.ACCRUAL_METHOD
http://purl.org/dc/terms/accrualMethod
|
static IRI |
DCTERMS.ACCRUAL_PERIODICITY
http://purl.org/dc/terms/accrualPeriodicity
|
static IRI |
DCTERMS.ACCRUAL_POLICY
http://purl.org/dc/terms/ accrualPolicy
|
static IRI |
VCARD4.ACQUAINTANCE
vcard:Acquaintance
|
static IRI |
SP.ADD |
static IRI |
VCARD4.ADDITIONAL_NAME
vcard:additional-name
|
static IRI |
VCARD4.ADDRESS
vcard:Address
|
static IRI |
LOCN.ADDRESS
locn:Address
|
static IRI |
LOCN.ADDRESS_AREA
locn:addressArea
|
static IRI |
LOCN.ADDRESS_ID
locn:addressId
|
static IRI |
LOCN.ADDRESS_PROP
locn:address
|
static IRI |
LOCN.ADMIN_UNIT_L1
locn:adminUnitL1
|
static IRI |
LOCN.ADMIN_UNIT_L2
locn:adminUnitL2
|
static IRI |
VCARD4.ADR
vcard:adr
|
static IRI |
FOAF.AGE |
static IRI |
VCARD4.AGENT
vcard:Agent
|
static IRI |
FOAF.AGENT |
static IRI |
DCTERMS.AGENT
http://purl.org/dc/terms/Agent
|
static IRI |
DCTERMS.AGENT_CLASS
http://purl.org/dc/terms/AgentClass
|
static IRI |
VCARD4.AGENT_PROP
Deprecated.
|
static IRI |
SD.AGGREGATE
Aggregate
|
static IRI |
SP.AGGREGATION_CLASS
http://spinrdf.org/sp#Aggregation Base class of aggregation types (not part of the SPARQL 1.0 standard but
supported by ARQ and other engines).
|
static IRI |
FOAF.AIM_CHAT_ID |
static IRI |
SP.ALL_PROPERTY
http://spinrdf.org/sp#all Used in DROP and CLEAR.
|
static IRI |
OWL.ALLDIFFERENT
http://www.w3.org/2002/07/owl#AllDifferent
|
static IRI |
OWL.ALLDISJOINTCLASSES
http://www.w3.org/2002/07/owl#AllDisjointClasses
|
static IRI |
OWL.ALLDISJOINTPROPERTIES
http://www.w3.org/2002/07/owl#AllDisjointProperties
|
static IRI |
OWL.ALLVALUESFROM
http://www.w3.org/2002/07/owl#allValuesFrom
|
static IRI |
RDF.ALT
http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt
|
static IRI |
SKOSXL.ALT_LABEL
The skosxl:altLabel property.
|
static IRI |
SKOS.ALT_LABEL
The skos:altLabel lexical label property.
|
static IRI |
SP.ALT_PATH_CLASS
http://spinrdf.org/sp#AltPath An alternative path with the union of sp:path1 and sp:path2.
|
static IRI |
DCTERMS.ALTERNATIVE
http://purl.org/dc/terms/alternative
|
static IRI |
SHACL.ALTERNATIVE_PATH
sh:alternativePath
|
static IRI |
SP.AND |
static IRI |
SHACL.AND
sh:and
|
static IRI |
SHACL.AND_CONSTRAINT_COMPONENT
sh:AndConstraintComponent
|
static IRI |
SHACL.AND_CONSTRAINT_COMPONENT_AND
sh:AndConstraintComponent-and
|
static IRI |
VCARD4.ANNIVERSARY
vcard:anniversary
|
static IRI |
OWL.ANNOTATEDPROPERTY
http://www.w3.org/2002/07/owl#annotatedProperty
|
static IRI |
OWL.ANNOTATEDSOURCE
http://www.w3.org/2002/07/owl#annotatedSource
|
static IRI |
OWL.ANNOTATEDTARGET
http://www.w3.org/2002/07/owl#annotatedTarget
|
static IRI |
OWL.ANNOTATION
http://www.w3.org/2002/07/owl#Annotation
|
static IRI |
SHACL.ANNOTATION_PROPERTY
sh:annotationProperty
|
static IRI |
SHACL.ANNOTATION_VALUE
sh:annotationValue
|
static IRI |
SHACL.ANNOTATION_VAR_NAME
sh:annotationVarName
|
static IRI |
OWL.ANNOTATIONPROPERTY
http://www.w3.org/2002/07/owl#AnnotationProperty
|
static IRI |
XMLSchema.ANYURI
http://www.w3.org/2001/XMLSchema#anyURI
|
static IRI |
SP.ARG_PROPERTY
http://spinrdf.org/sp#arg Abstract superproperty for the enumerated arg1, arg2 etc.
|
static IRI |
SPIN.ARG1_INSTANCE |
static IRI |
SP.ARG1_PROPERTY
http://spinrdf.org/sp#arg1 The first argument of a function call.
|
static IRI |
SPIN.ARG2_INSTANCE |
static IRI |
SP.ARG2_PROPERTY
http://spinrdf.org/sp#arg2 The second argument of a function call.
|
static IRI |
SPIN.ARG3_INSTANCE |
static IRI |
SP.ARG3_PROPERTY
http://spinrdf.org/sp#arg3 The third argument of a function call.
|
static IRI |
SPIN.ARG4_INSTANCE |
static IRI |
SP.ARG4_PROPERTY
http://spinrdf.org/sp#arg4 The forth argument of a function call.
|
static IRI |
SPIN.ARG5_INSTANCE |
static IRI |
SP.ARG5_PROPERTY
http://spinrdf.org/sp#arg5 The fifth argument of a function call.
|
static IRI |
SPL.ARGUMENT_TEMPLATE
http://spinrdf.org/spl#Argument Provides metadata about an argument of a SPIN Function or Template.
|
static IRI |
SP.AS_PROPERTY
Deprecated.
|
static IRI |
GEO.AS_WKT |
static IRI |
SP.ASC_CLASS
http://spinrdf.org/sp#Asc Marker to indicate ascending order.
|
static IRI |
LDP.ASCENDING
ldp:Ascending
|
static IRI |
SHACL.ASK
sh:ask
|
static IRI |
SP.ASK_CLASS
http://spinrdf.org/sp#Ask An ASK query that returns true if the condition in the body is met by at least one
result set.
|
static IRI |
SPIN.ASK_FUNCTION |
static IRI |
SPIN.ASK_TEMPLATE_CLASS
http://spinrdf.org/spin#AskTemplate A SPIN template that wraps an ASK query.
|
static IRI |
SPIN.ASK_TEMPLATES_CLASS
http://spinrdf.org/spin#AskTemplates Suggested abstract base class for all AskTemplates.
|
static IRI |
EARL.ASSERTEDBY |
static IRI |
EARL.ASSERTION |
static IRI |
OWL.ASSERTIONPROPERTY
http://www.w3.org/2002/07/owl#assertionProperty
|
static IRI |
EARL.ASSERTOR |
static IRI |
OWL.ASYMMETRICPROPERTY
http://www.w3.org/2002/07/owl#AsymmetricProperty
|
static IRI |
DCTERMS.AUDIENCE
http://purl.org/dc/terms/audience
|
static IRI |
EARL.AUTOMATIC |
static IRI |
DCTERMS.AVAILABLE
http://purl.org/dc/terms/available
|
static IRI |
SD.AVAILBLE_GRAPHS
available graph descriptions
|
static IRI |
SP.AVG_CLASS
http://spinrdf.org/sp#Avg Represents AVG aggregations.
|
static IRI |
OWL.AXIOM
http://www.w3.org/2002/07/owl#Axiom
|
static IRI |
OWL.BACKWARDCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#backwardCompatibleWith
|
static IRI |
RDF.BAG
http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag
|
static IRI |
XMLSchema.BASE64BINARY
http://www.w3.org/2001/XMLSchema#base64Binary
|
static IRI |
ORG.BASED_AT
void:basedAt
|
static IRI |
FOAF.BASED_NEAR |
static IRI |
LDP.BASIC_CONTAINER
ldp:BasicContainer
|
static IRI |
SD.BASIC_FEDERATED_QUERY
Basic Federated Query
|
static IRI |
VCARD4.BBS
Deprecated.
|
static IRI |
VCARD4.BDAY
vcard:bday
|
static IRI |
DCTERMS.BIBLIOGRAPHIC_CITATION
http://purl.org/dc/terms/bibliographicCitation
|
static IRI |
DCTERMS.BIBLIOGRAPHIC_RESOURCE
http://purl.org/dc/terms/BibliographicResource
|
static IRI |
SP.BIND_CLASS
http://spinrdf.org/sp#Bind A BIND element.
|
static IRI |
SP.BINDINGS_PROPERTY |
static IRI |
FOAF.BIRTHDAY |
static IRI |
SHACL.BLANK_NODE
sh:BlankNode
|
static IRI |
SHACL.BLANK_NODE_OR_IRI
sh:BlankNodeOrIRI
|
static IRI |
SHACL.BLANK_NODE_OR_LITERAL
sh:BlankNodeOrLiteral
|
static IRI |
DOAP.BLOG |
static IRI |
SP.BNODE |
static IRI |
SPIN.BODY_PROPERTY
http://spinrdf.org/spin#body The body of a Function or Template.
|
static IRI |
XMLSchema.BOOLEAN
http://www.w3.org/2001/XMLSchema#boolean
|
static IRI |
OWL.BOTTOMDATAPROPERTY
http://www.w3.org/2002/07/owl#bottomDataProperty
|
static IRI |
OWL.BOTTOMOBJECTPROPERTY
http://www.w3.org/2002/07/owl#bottomObjectProperty
|
static IRI |
SP.BOUND |
static IRI |
GEOF.BOUNDARY |
static IRI |
DCTERMS.BOX
http://purl.org/dc/terms/Box
|
static IRI |
SKOS.BROAD_MATCH
The skos:broadMatch relation.
|
static IRI |
SKOS.BROADER
The skos:broader relation.
|
static IRI |
SKOS.BROADER_TRANSITIVE
The skos:broaderTransitive relation.
|
static IRI |
GEOF.BUFFER |
static IRI |
DOAP.BUG_DATABASE |
static IRI |
SPIF.BUILD_STRING_FUNCTION |
static IRI |
SPIF.BUILD_URI_FUNCTION |
static IRI |
XMLSchema.BYTE
http://www.w3.org/2001/XMLSchema#byte
|
static IRI |
DCAT.BYTE_SIZE
dcat:byteSize
|
static IRI |
SPIF.CAN_INVOKE_FUNCTION |
static IRI |
EARL.CANNOTTELL |
static IRI |
VCARD4.CAR
Deprecated.
|
static IRI |
OWL.CARDINALITY
http://www.w3.org/2002/07/owl#cardinality
|
static IRI |
SPIF.CAST_FUNCTION |
static IRI |
DCAT.CATALOG
dcat:Catalog
|
static IRI |
DCAT.CATALOG_RECORD
dcat:CatalogRecord
|
static IRI |
VCARD4.CATEGORY
vcard:category
|
static IRI |
DOAP.CATEGORY |
static IRI |
VCARD4.CELL
vcard:Cell
|
static IRI |
ORG.CHANGE_EVENT
void:ChangeEvent
|
static IRI |
SKOS.CHANGE_NOTE
The skos:changeNote property.
|
static IRI |
ORG.CHANGED_BY
void:changedBy
|
static IRI |
VANN.CHANGES
A reference to a resource that describes changes between this version of a vocabulary and the previous.
|
static IRI |
VCARD4.CHILD
vcard:Child
|
static IRI |
VOID.CLASS
void:class
|
static IRI |
VCARD4.CLASS
Deprecated.
|
static IRI |
SHACL.CLASS
sh:class
|
static IRI |
RDFS.CLASS
http://www.w3.org/2000/01/rdf-schema#Class
|
static IRI |
OWL.CLASS
http://www.w3.org/2002/07/owl#Class
|
static IRI |
SHACL.CLASS_CONSTRAINT_COMPONENT
sh:ClassConstraintComponent
|
static IRI |
SHACL.CLASS_CONSTRAINT_COMPONENT_CLASS
sh:ClassConstraintComponent-class
|
static IRI |
VOID.CLASS_PARTITION
void:classPartition
|
static IRI |
VOID.CLASSES
void:classes
|
static IRI |
ORG.CLASSIFICATION
void:classification
|
static IRI |
SP.CLEAR_CLASS
http://spinrdf.org/sp#Clear An Update operation that removes all triples from a specified graph.
|
static IRI |
SKOS.CLOSE_MATCH
The skos:closeMatch relation.
|
static IRI |
SHACL.CLOSED
sh:closed
|
static IRI |
SHACL.CLOSED_CONSTRAINT_COMPONENT
sh:ClosedConstraintComponent
|
static IRI |
SHACL.CLOSED_CONSTRAINT_COMPONENT_CLOSED
sh:ClosedConstraintComponent-closed
|
static IRI |
SHACL.CLOSED_CONSTRAINT_COMPONENT_IGNORED_PROPERTIES
sh:ClosedConstraintComponent-ignoredProperties
|
static IRI |
SP.COALESCE |
static IRI |
VCARD4.COLLEAGUE
vcard:Colleague
|
static IRI |
SKOS.COLLECTION
The skos:Collection class
|
static IRI |
SPIN.COLUMN_CLASS
http://spinrdf.org/spin#Column Provides metadata about a column in the result set of a (SPARQL) query, for
example of the body queries of SPIN templates.
|
static IRI |
SPIN.COLUMN_INDEX_PROPERTY
http://spinrdf.org/spin#columnIndex The index of a column (from left to right) starting at 0.
|
static IRI |
SPIN.COLUMN_PROPERTY
http://spinrdf.org/spin#column Can link a TableDataProvider (esp.
|
static IRI |
SPIN.COLUMN_TYPE_PROPERTY
http://spinrdf.org/spin#columnType The datatype or resource type of a spin:Column.
|
static IRI |
SPIN.COLUMN_WIDTH_PROPERTY
http://spinrdf.org/spin#columnWidth The preferred width of the associated Column, for display purposes.
|
static IRI |
SP.COMMAND_CLASS
http://spinrdf.org/sp#Command A shared superclass for sp:Query and sp:Update that can be used to specify that the
range of property can be either one.
|
static IRI |
SPIN.COMMAND_PROPERTY
http://spinrdf.org/spin#command Can be used to link a resource with a SPARQL query or update request
(sp:Command).
|
static IRI |
RDFS.COMMENT
http://www.w3.org/2000/01/rdf-schema#comment
|
static IRI |
OWL.COMPLEMENTOF
http://www.w3.org/2002/07/owl#complementOf
|
static IRI |
FN.CONCAT
fn:concat
|
static IRI |
APF.CONCAT |
static IRI |
SKOS.CONCEPT
The skos:Concept class
|
static IRI |
SKOS.CONCEPT_SCHEME
The skos:ConceptScheme class
|
static IRI |
SHACL.CONFORMS
sh:conforms
|
static IRI |
DCTERMS.CONFORMS_TO
http://purl.org/dc/terms/conformsTo
|
static IRI |
LDP.CONSTRAINED_BY
ldp:constrainedBy
|
static IRI |
SHACL.CONSTRAINT_COMPONENT
sh:ConstraintComponent
|
static IRI |
SPIN.CONSTRAINT_PROPERTY
http://spinrdf.org/spin#constraint Links a class with constraints on its instances.
|
static IRI |
SPIN.CONSTRAINT_VIOLATION_CLASS
http://spinrdf.org/spin#ConstraintViolation An object that can be created by spin:constraints to provide
information about a constraint violation.
|
static IRI |
SHACL.CONSTRUCT
sh:construct
|
static IRI |
SP.CONSTRUCT_CLASS
http://spinrdf.org/sp#Construct A CONSTRUCT-type query that can be used to construct new triples from template
triples (head) that use variable bindings from the match patterns (body).
|
static IRI |
SPIN.CONSTRUCT_PROPERTY |
static IRI |
SPIN.CONSTRUCT_TEMPLATE_CLASS |
static IRI |
SPIN.CONSTRUCT_TEMPLATES_CLASS
http://spinrdf.org/spin#ConstructTemplates Suggested abstract base class for all ConstructTemplates.
|
static IRI |
SPIN.CONSTRUCTOR_PROPERTY
http://spinrdf.org/spin#constructor Can be used to attach a "constructor" to a class.
|
static IRI |
VCARD4.CONTACT
vcard:Contact
|
static IRI |
DCAT.CONTACT_POINT
dcat:contactPoint
|
static IRI |
RDFS.CONTAINER
http://www.w3.org/2000/01/rdf-schema#Container
|
static IRI |
LDP.CONTAINER
ldp:Container
|
static IRI |
RDFS.CONTAINERMEMBERSHIPPROPERTY
http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty
|
static IRI |
LDP.CONTAINS
ldp:contains
|
static IRI |
FN.CONTAINS
fn:contains
|
static IRI |
DCTERMS.CONTRIBUTOR
http://purl.org/dc/terms/contributor
|
static IRI |
DC.CONTRIBUTOR
dc:contributor
|
static IRI |
SPIF.CONVERT_SPIN_RDF_TO_STRING_FUNCTION |
static IRI |
GEOF.CONVEX_HULL |
static IRI |
VCARD4.CORESIDENT
vcard:Coresident
|
static IRI |
SP.COUNT_CLASS
http://spinrdf.org/sp#Count Counts the number of times a variable is used.
|
static IRI |
VCARD4.COUNTRY_NAME
vcard:country-name
|
static IRI |
DCTERMS.COVERAGE
http://purl.org/dc/terms/coverage
|
static IRI |
DC.COVERAGE
dc:coverage
|
static IRI |
VCARD4.COWORKER
vcard:Coworker
|
static IRI |
SP.CREATE_CLASS
http://spinrdf.org/sp#Create An Update operation that creates a new empty graph with a name specified by
sp:graphIRI.
|
static IRI |
DOAP.CREATED |
static IRI |
DCTERMS.CREATED
http://purl.org/dc/terms/created
|
static IRI |
DCTERMS.CREATOR
http://purl.org/dc/terms/creator
|
static IRI |
DC.CREATOR
dc:creator
|
static IRI |
VCARD4.CRUSH
vcard:Crush
|
static IRI |
FOAF.CURRENT_PROJECT |
static IRI |
SPIF.CURRENT_TIME_MILLIS_FUNCTION |
static IRI |
VOID.DATA_DUMP
void:dataDump
|
static IRI |
SP.DATA_PROPERTY |
static IRI |
OWL.DATARANGE
http://www.w3.org/2002/07/owl#DataRange
|
static IRI |
VOID.DATASET
void:Dataset
|
static IRI |
SD.DATASET
Dataset
|
static IRI |
DCAT.DATASET
dcat:Dataset
|
static IRI |
VOID.DATASET_DESCRIPTION
void:DatasetDescription
|
static IRI |
SP.DATATYPE |
static IRI |
SHACL.DATATYPE
sh:datatype
|
static IRI |
RDFS.DATATYPE
http://www.w3.org/2000/01/rdf-schema#Datatype
|
static IRI |
SHACL.DATATYPE_CONSTRAINT_COMPONENT
sh:DatatypeConstraintComponent
|
static IRI |
SHACL.DATATYPE_CONSTRAINT_COMPONENT_DATATYPE
sh:DatatypeConstraintComponent-datatype
|
static IRI |
OWL.DATATYPECOMPLEMENTOF
http://www.w3.org/2002/07/owl#datatypeComplementOf
|
static IRI |
OWL.DATATYPEPROPERTY
http://www.w3.org/2002/07/owl#DatatypeProperty
|
static IRI |
XMLSchema.DATE
http://www.w3.org/2001/XMLSchema#date
|
static IRI |
VCARD4.DATE
vcard:Date
|
static IRI |
DCTERMS.DATE
http://purl.org/dc/terms/date
|
static IRI |
DC.DATE
dc:date
|
static IRI |
DCTERMS.DATE_ACCEPTED
http://purl.org/dc/terms/dateAccepted
|
static IRI |
DCTERMS.DATE_COPYRIGHTED
http://purl.org/dc/terms/dateCopyrighted
|
static IRI |
SPIF.DATE_FORMAT_FUNCTION |
static IRI |
DCTERMS.DATE_SUBMITTED
http://purl.org/dc/terms/dateSubmitted
|
static IRI |
XMLSchema.DATETIME
http://www.w3.org/2001/XMLSchema#dateTime
|
static IRI |
FN.DAY_FROM_DATETIME
fn:day-from-dateTime
|
static IRI |
XMLSchema.DAYTIMEDURATION
http://www.w3.org/2001/XMLSchema#dayTimeDuration
|
static IRI |
DCTERMS.DCMI_TYPE
http://purl.org/dc/terms/DCMIType
|
static IRI |
DCTERMS.DDC
http://purl.org/dc/terms/DDC
|
static IRI |
SHACL.DEACTIVATED
sh:deactivated
|
static IRI |
XMLSchema.DECIMAL
http://www.w3.org/2001/XMLSchema#decimal
|
static IRI |
SPIF.DECIMAL_FORMAT_FUNCTION |
static IRI |
SHACL.DECLARE
sh:declare
|
static IRI |
SPIF.DECODE_URL_FUNCTION |
static IRI |
SD.DEFAULT_DATASET
default dataset description
|
static IRI |
SD.DEFAULT_ENTAILMENT_REGIME
default entailment regime
|
static IRI |
SD.DEFAULT_GRAPH
default graph
|
static IRI |
SP.DEFAULT_PROPERTY
http://spinrdf.org/sp#default Used in DROP and CLEAR.
|
static IRI |
SD.DEFAULT_SUPPORTED_ENTAILMENT_PROFILE
default supported entailment profile
|
static IRI |
SHACL.DEFAULT_VALUE
sh:defaultValue
|
static IRI |
SPL.DEFAULT_VALUE_PROPERTY
http://spinrdf.org/spl#defaultValue
|
static IRI |
SKOS.DEFINITION
The skos:definition property.
|
static IRI |
SP.Delete
Deprecated.
|
static IRI |
SP.DELETE_CLASS
Deprecated.
|
static IRI |
SP.DELETE_DATA_CLASS
http://spinrdf.org/sp#DeleteData An Update operation to delete specific triples.
|
static IRI |
SP.DELETE_PATTERN_PROPERTY
http://spinrdf.org/sp#deletePattern Points to a list of sp:TripleTemplates and sp:NamedGraphs in a modify
operation.
|
static IRI |
SP.DELETE_WHERE_CLASS
http://spinrdf.org/sp#DeleteWhere An Update operation where the triples matched by the WHERE clause (sp:where)
will be the triples deleted.
|
static IRI |
FOAF.DEPICTION |
static IRI |
FOAF.DEPICTS |
static IRI |
OWL.DEPRECATED
http://www.w3.org/2002/07/owl#deprecated
|
static IRI |
OWL.DEPRECATEDCLASS
http://www.w3.org/2002/07/owl#DeprecatedClass
|
static IRI |
OWL.DEPRECATEDPROPERTY
http://www.w3.org/2002/07/owl#DeprecatedProperty
|
static IRI |
SD.DEREFERENCES_URIS
Dereferences URIs
|
static IRI |
SHACL.DERIVED_VALUES
sh:derivedValues
|
static IRI |
SHACL.DERIVED_VALUES_CONSTRAINT_COMPONENT
sh:DerivedValuesConstraintComponent
|
static IRI |
SP.DESC_CLASS
http://spinrdf.org/sp#Desc Marker to indicate descending order.
|
static IRI |
LDP.DESCENDING
ldp:Descending
|
static IRI |
SP.DESCRIBE_CLASS
http://spinrdf.org/sp#Describe A DESCRIBE-type Query.
|
static IRI |
SHACL.DESCRIPTION
sh:description
|
static IRI |
DOAP.DESCRIPTION |
static IRI |
DCTERMS.DESCRIPTION
http://purl.org/dc/terms/description
|
static IRI |
DC.DESCRIPTION
dc:description
|
static IRI |
SHACL.DETAIL
sh:detail
|
static IRI |
DOAP.DEVELOPER |
static IRI |
GEOF.DIFFERENCE |
static IRI |
OWL.DIFFERENTFROM
http://www.w3.org/2002/07/owl#differentFrom
|
static IRI |
LDP.DIRECT_CONTAINER
ldp:DirectContainer
|
static IRI |
SESAME.DIRECTSUBCLASSOF
http://www.openrdf.org/schema/sesame#directSubClassOf
|
static IRI |
SESAME.DIRECTSUBPROPERTYOF
http://www.openrdf.org/schema/sesame#directSubPropertyOf
|
static IRI |
SESAME.DIRECTTYPE
http://www.openrdf.org/schema/sesame#directType
|
static IRI |
SHACL.DISJOINT
sh:disjoint
|
static IRI |
SHACL.DISJOINT_CONSTRAINT_COMPONENT
sh:DisjointConstraintComponent
|
static IRI |
SHACL.DISJOINT_CONSTRAINT_COMPONENT_DISJOINT
sh:DisjointConstraintComponent-disjoint
|
static IRI |
OWL.DISJOINTUNIONOF
http://www.w3.org/2002/07/owl#disjointUnionOf
|
static IRI |
OWL.DISJOINTWITH
http://www.w3.org/2002/07/owl#disjointWith
|
static IRI |
GEOF.DISTANCE |
static IRI |
VOID.DISTINCT_OBJECTS
void:distinctObjects
|
static IRI |
SP.DISTINCT_PROPERTY
http://spinrdf.org/sp#distinct A marker property to indicate that a Select query is of type SELECT DISTINCT.
|
static IRI |
VOID.DISTINCT_SUBJECTS
void:distinctSubjects
|
static IRI |
OWL.DISTINCTMEMBERS
http://www.w3.org/2002/07/owl#distinctMembers
|
static IRI |
DCAT.DISTRIBUTION
dcat:Distribution
|
static IRI |
SP.DIVIDE |
static IRI |
FOAF.DNA_CHECKSUM |
static IRI |
FOAF.DOCUMENT |
static IRI |
SP.DOCUMENT_PROPERTY
http://spinrdf.org/sp#document The IRI of the document to load using a LOAD Update operation.
|
static IRI |
DOAP.DOCUMENTER |
static IRI |
VOID.DOCUMENTS
void:documents
|
static IRI |
VCARD4.DOM
Deprecated.
|
static IRI |
RDFS.DOMAIN
http://www.w3.org/2000/01/rdf-schema#domain
|
static IRI |
XMLSchema.DOUBLE
http://www.w3.org/2001/XMLSchema#double
|
static IRI |
DOAP.DOWNLOAD_PAGE |
static IRI |
DCAT.DOWNLOAD_URL
dcat:downloadURL
|
static IRI |
SP.DROP_CLASS
http://spinrdf.org/sp#Drop An Update operation that removes a specified graph from the Graph Store.
|
static IRI |
XMLSchema.DURATION
http://www.w3.org/2001/XMLSchema#duration
|
static IRI |
SKOS.EDITORIAL_NOTE
The skos:editorialNote property.
|
static IRI |
DCTERMS.EDUCATION_LEVEL
http://purl.org/dc/terms/educationLevel
|
static IRI |
GEOF.EH_CONTAINS |
static IRI |
GEOF.EH_COVERED_BY |
static IRI |
GEOF.EH_COVERS |
static IRI |
GEOF.EH_DISJOINT |
static IRI |
GEOF.EH_EQUALS |
static IRI |
GEOF.EH_INSIDE |
static IRI |
GEOF.EH_MEET |
static IRI |
GEOF.EH_OVERLAP |
static IRI |
SP.ELEMENT_CLASS
http://spinrdf.org/sp#Element An abstract base class for all pattern elements.
|
static IRI |
SP.ELEMENT_GROUP_CLASS
http://spinrdf.org/sp#ElementGroup Abstract base class of group patterns.
|
static IRI |
SP.ELEMENT_LIST_CLASS
http://spinrdf.org/sp#ElementList A list of Elements.
|
static IRI |
SP.ELEMENTS_PROPERTY
http://spinrdf.org/sp#elements Points to an ElementList, for example in an Optional element.
|
static IRI |
VCARD4.EMAIL
Deprecated.
|
static IRI |
VCARD4.EMAIL_PROP
vcard:email
|
static IRI |
VCARD4.EMERGENCY
vcard:Emergency
|
static IRI |
SD.EMPTY_GRAPHS
Empty Graphs
|
static IRI |
FN.ENCODE_FOR_URI
fn:encode-for-uri
|
static IRI |
SPIF.ENCODE_URL_FUNCTION |
static IRI |
SD.ENDPOINT
endpoint
|
static IRI |
FN.ENDS_WITH
fn:ends-with
|
static IRI |
SD.ENTAILMENT_PROFILE
Entailment Profile
|
static IRI |
SD.ENTAILMENT_REGIME_CLASS
Entailment Regime
|
static IRI |
SD.ENTAILMENT_REGIME_PROPERTY
entailment regime
|
static IRI |
XMLSchema.ENTITIES
http://www.w3.org/2001/XMLSchema#ENTITIES
|
static IRI |
VOID.ENTITIES
void:entities
|
static IRI |
XMLSchema.ENTITY
http://www.w3.org/2001/XMLSchema#ENTITY
|
static IRI |
GEOF.ENVELOPE |
static IRI |
SP.EQ |
static IRI |
SHACL.EQUALS
sh:equals
|
static IRI |
SHACL.EQUALS_CONSTRAINT_COMPONENT
sh:EqualsConstraintComponent
|
static IRI |
SHACL.EQUALS_CONSTRAINT_COMPONENT_EQUALS
sh:EqualsConstraintComponent-equals
|
static IRI |
OWL.EQUIVALENTCLASS
http://www.w3.org/2002/07/owl#equivalentClass
|
static IRI |
OWL.EQUIVALENTPROPERTY
http://www.w3.org/2002/07/owl#equivalentProperty
|
static IRI |
SPIN.ERROR_VIOLATION_LEVEL |
static IRI |
SPIN.EVAL_CLASS
Deprecated.
|
static IRI |
SPIN.EVAL_FUNCTION
http://spinrdf.org/spin#eval Evaluates a given SPIN expression or SELECT or ASK query, and returns its result.
|
static IRI |
SKOS.EXACT_MATCH
The skos:exactMatch relation.
|
static IRI |
VANN.EXAMPLE
A reference to a resource that provides an example of how this resource can be used.
|
static IRI |
SKOS.EXAMPLE
The skos:example property.
|
static IRI |
VOID.EXAMPLE_RESOURCE
void:exampleResource
|
static IRI |
SP.EXISTS |
static IRI |
SP.EXPRESSION_PROPERTY
http://spinrdf.org/sp#expression Points to an expression, for example in a Filter or Assignment.
|
static IRI |
VCARD4.EXTENDED_ADDRESS
Deprecated.
|
static IRI |
SD.EXTENSION_AGGREGATE
extension aggregate
|
static IRI |
SD.EXTENSION_FUNCTION
extension function
|
static IRI |
DCTERMS.EXTENT
http://purl.org/dc/terms/extent
|
static IRI |
EARL.FAIL |
static IRI |
VCARD4.FAMILY_NAME
vcard:family-name
|
static IRI |
FOAF.FAMILY_NAME |
static IRI |
FOAF.FAMILYNAME
Deprecated.
Use FAMILY_NAME instead for new statements
|
static IRI |
SPIN.FATAL_VIOLATION_LEVEL |
static IRI |
VCARD4.FAX
vcard:Fax
|
static IRI |
VOID.FEATURE
void:feature
|
static IRI |
SD.FEATURE_CLASS
Feature
|
static IRI |
SD.FEATURE_PROPERTY
feature
|
static IRI |
VCARD4.FEMALE
vcard:Female
|
static IRI |
DCTERMS.FILE_FORMAT
http://purl.org/dc/terms/FileFormat
|
static IRI |
SP.FILTER_CLASS
http://spinrdf.org/sp#Filter A constraint element that evaluates a given expression to true or false.
|
static IRI |
RDF.FIRST
http://www.w3.org/1999/02/22-rdf-syntax-ns#first
|
static IRI |
FOAF.FIRST_NAME |
static IRI |
SPIN.FIX_PROPERTY
http://spinrdf.org/spin#fix Can be used to link a ConstraintViolation with one or more UPDATE Templates that
would help fix the violation.
|
static IRI |
SHACL.FLAGS
sh:flags
|
static IRI |
XMLSchema.FLOAT
http://www.w3.org/2001/XMLSchema#float
|
static IRI |
VCARD4.FN
vcard:fn
|
static IRI |
FOAF.FOCUS |
static IRI |
SHACL.FOCUS_NODE
sh:focusNode
|
static IRI |
SPIF.FOR_EACH_PROPERTY |
static IRI |
SPIF.FOR_PROPERTY |
static IRI |
ORG.FORMAL_ORGANIZATION
void:FormalOrganization
|
static IRI |
DCTERMS.FORMAT
http://purl.org/dc/terms/format
|
static IRI |
DC.FORMAT
dc:format
|
static IRI |
DCTERMS.FREQUENCY
http://purl.org/dc/terms/Frequency
|
static IRI |
VCARD4.FRIEND
vcard:Friend
|
static IRI |
SP.FROM_NAMED_PROPERTY
http://spinrdf.org/sp#fromNamed Specifies a named RDF Dataset used by a Query (FROM NAMED syntax in SPARQL).
|
static IRI |
SP.FROM_PROPERTY
http://spinrdf.org/sp#from Specifies an RDF Dataset used by a Query (FROM syntax in SPARQL).
|
static IRI |
LOCN.FULL_ADDRESS
locn:fullAddress
|
static IRI |
SHACL.FUNCTION
sh:Function
|
static IRI |
SD.FUNCTION
Function
|
static IRI |
SPIN.FUNCTION_CLASS
http://spinrdf.org/spin#Function Metaclass for functions that can be used in SPARQL expressions (e.g.
|
static IRI |
OWL.FUNCTIONALPROPERTY
http://www.w3.org/2002/07/owl#FunctionalProperty
|
static IRI |
SPIN.FUNCTIONS_CLASS
http://spinrdf.org/spin#Functions An abstract base class for all defined functions.
|
static IRI |
FOAF.FUNDED_BY |
static IRI |
XMLSchema.GDAY
http://www.w3.org/2001/XMLSchema#gDay
|
static IRI |
SP.GE |
static IRI |
FOAF.GEEKCODE |
static IRI |
VCARD4.GENDER
vcard:Gender
|
static IRI |
FOAF.GENDER |
static IRI |
SPIF.GENERATE_UUID_FUNCTION |
static IRI |
VCARD4.GEO
vcard:geo
|
static IRI |
LOCN.GEOGRAPHIC_NAME
locn:geographicName
|
static IRI |
LOCN.GEOMETRY
locn:Geometry
|
static IRI |
LOCN.GEOMETRY_PROP
locn:geometry
|
static IRI |
GEOF.GET_SRID |
static IRI |
VCARD4.GIVEN_NAME
vcard:given-name
|
static IRI |
FOAF.GIVEN_NAME |
static IRI |
FOAF.GIVENNAME
Deprecated.
Use GIVEN_NAME instead for new statements
|
static IRI |
XMLSchema.GMONTH
http://www.w3.org/2001/XMLSchema#gMonth
|
static IRI |
XMLSchema.GMONTHDAY
http://www.w3.org/2001/XMLSchema#gMonthDay
|
static IRI |
SD.GRAPH_CLASS
Graph
|
static IRI |
SD.GRAPH_COLLECTION
Graph Collection
|
static IRI |
SP.GRAPH_IRI_PROPERTY
http://spinrdf.org/sp#graphIRI Points to graph names (IRIs) in various sp:Update operations.
|
static IRI |
SP.GRAPH_NAME_NODE_PROPERTY
http://spinrdf.org/sp#graphNameNode The name (IRI or Variable) of a NamedGraph.
|
static IRI |
SD.GRAPH_PROPERTY
graph
|
static IRI |
VCARD4.GROUP
vcard:Group
|
static IRI |
SHACL.GROUP
sh:group
|
static IRI |
FOAF.GROUP |
static IRI |
SP.GROUP_BY_PROPERTY
http://spinrdf.org/sp#groupBy Points from a Query to the list of GROUP BY expressions.
|
static IRI |
SP.GROUP_CONCAT_CLASS |
static IRI |
SP.GT |
static IRI |
XMLSchema.GYEAR
http://www.w3.org/2001/XMLSchema#gYear
|
static IRI |
XMLSchema.GYEARMONTH
http://www.w3.org/2001/XMLSchema#gYearMonth
|
static IRI |
VCARD4.HAS_ADDITIONAL_NAME
vcard:hasAdditionalName
|
static IRI |
VCARD4.HAS_ADDRESS
vcard:hasAddress
|
static IRI |
SPIF.HAS_ALL_OBJECTS_FUNCTION |
static IRI |
VCARD4.HAS_CALENDAR_BUSY
vcard:hasCalendarBusy
|
static IRI |
VCARD4.HAS_CALENDAR_LINK
vcard:hasCalendarLink
|
static IRI |
VCARD4.HAS_CALENDAR_REQUEST
vcard:hasCalendarRequest
|
static IRI |
VCARD4.HAS_CATEGORY
vcard:hasCategory
|
static IRI |
VCARD4.HAS_COUNTRY_NAME
vcard:hasCountryName
|
static IRI |
DCAT.HAS_DATASET
dcat:dataset
|
static IRI |
DCAT.HAS_DISTRIBUTION
dcat:distribution
|
static IRI |
VCARD4.HAS_EMAIL
vcard:hasEmail
|
static IRI |
VCARD4.HAS_FAMILY_NAME
vcard:hasFamilyName
|
static IRI |
VCARD4.HAS_FN
vcard:hasFN
|
static IRI |
DCTERMS.HAS_FORMAT
http://purl.org/dc/terms/hasFormat
|
static IRI |
VCARD4.HAS_GENDER
vcard:hasGender
|
static IRI |
VCARD4.HAS_GEO
vcard:hasGeo
|
static IRI |
VCARD4.HAS_GIVEN_NAME
vcard:hasGivenName
|
static IRI |
VCARD4.HAS_HONORIFIC_PREFIX
vcard:hasHonorificPrefix
|
static IRI |
VCARD4.HAS_HONORIFIC_SUFFIX
vcard:hasHonorificSuffix
|
static IRI |
VCARD4.HAS_INSTANT_MESSAGE
vcard:hasInstantMessage
|
static IRI |
VCARD4.HAS_KEY
vcard:hasKey
|
static IRI |
VCARD4.HAS_LANGUAGE
vcard:hasLanguage
|
static IRI |
VCARD4.HAS_LOCALITY
vcard:hasLocality
|
static IRI |
VCARD4.HAS_LOGO
vcard:hasLogo
|
static IRI |
VCARD4.HAS_MEMBER
vcard:hasMember
|
static IRI |
ORG.HAS_MEMBER
void:hasMember
|
static IRI |
LDP.HAS_MEMBER_RELATION
ldp:hasMemberRelation
|
static IRI |
ORG.HAS_MEMBERSHIP
void:hasMembership
|
static IRI |
VCARD4.HAS_NAME
vcard:hasName
|
static IRI |
VCARD4.HAS_NICKNAME
vcard:hasNickname
|
static IRI |
VCARD4.HAS_NOTE
vcard:hasNote
|
static IRI |
ORG.HAS_ORGANIZATION
void:organization
|
static IRI |
VCARD4.HAS_ORGANIZATION_NAME
vcard:hasOrganizationName
|
static IRI |
VCARD4.HAS_ORGANIZATION_UNIT
vcard:hasOrganizationUnit
|
static IRI |
DCTERMS.HAS_PART
http://purl.org/dc/terms/hasPart
|
static IRI |
VCARD4.HAS_PHOTO
vcard:hasPhoto
|
static IRI |
ORG.HAS_POST
void:hasPost
|
static IRI |
VCARD4.HAS_POSTAL_CODE
vcard:hasPostalCode
|
static IRI |
ORG.HAS_PRIMARY_SITE
void:hasPrimarySite
|
static IRI |
DCAT.HAS_RECORD
dcat:record
|
static IRI |
VCARD4.HAS_REGION
vcard:hasRegion
|
static IRI |
ROV.HAS_REGISTERED_ORGANIZATION
rov:hasRegisteredOrganization
|
static IRI |
ORG.HAS_REGISTERED_SITE
void:hasRegisteredSite
|
static IRI |
VCARD4.HAS_RELATED
vcard:hasRelated
|
static IRI |
VCARD4.HAS_ROLE
vcard:hasRole
|
static IRI |
ORG.HAS_ROLE
void:role
|
static IRI |
ORG.HAS_SITE
void:hasSite
|
static IRI |
VCARD4.HAS_SOUND
vcard:hasSound
|
static IRI |
VCARD4.HAS_SOURCE
vcard:hasSource
|
static IRI |
VCARD4.HAS_STREET_ADDRESS
vcard:hasStreetAddress
|
static IRI |
ORG.HAS_SUB_ORGANIZATION
void:hasSubOrganization
|
static IRI |
VCARD4.HAS_TELEPHONE
vcard:hasTelephone
|
static IRI |
VCARD4.HAS_TITLE
vcard:hasTitle
|
static IRI |
SKOS.HAS_TOP_CONCEPT
The skos:hasTopConcept relation.
|
static IRI |
VCARD4.HAS_UID
vcard:hasUID
|
static IRI |
ORG.HAS_UNIT
void:hasUnit
|
static IRI |
VCARD4.HAS_URL
vcard:hasURL
|
static IRI |
VCARD4.HAS_VALUE
vcard:hasValue
|
static IRI |
SHACL.HAS_VALUE
sh:hasValue
|
static IRI |
SHACL.HAS_VALUE_CONSTRAINT_COMPONENT
sh:HasValueConstraintComponent
|
static IRI |
SHACL.HAS_VALUE_CONSTRAINT_COMPONENT_HAS_VALUE
sh:HasValueConstraintComponent-hasValue
|
static IRI |
DCTERMS.HAS_VERSION
http://purl.org/dc/terms/hasVersion
|
static IRI |
OWL.HASKEY
http://www.w3.org/2002/07/owl#hasKey
|
static IRI |
OWL.HASSELF
http://www.w3.org/2002/07/owl#hasSelf
|
static IRI |
OWL.HASVALUE
http://www.w3.org/2002/07/owl#hasValue
|
static IRI |
SP.HAVING_PROPERTY
http://spinrdf.org/sp#having Points from a SELECT query to a list of HAVING expressions.
|
static IRI |
ORG.HEAD_OF
void:headOf
|
static IRI |
ORG.HELD_BY
void:heldBy
|
static IRI |
EARL.HEURISTIC |
static IRI |
XMLSchema.HEXBINARY
http://www.w3.org/2001/XMLSchema#hexBinary
|
static IRI |
SKOSXL.HIDDEN_LABEL
The skosxl:hiddenLabel property.
|
static IRI |
SKOS.HIDDEN_LABEL
The skos:hiddenLabel lexical label property.
|
static IRI |
SKOS.HISTORY_NOTE
The skos:historyNote property.
|
static IRI |
ORG.HOLDS
void:holds
|
static IRI |
FOAF.HOLDS_ACCOUNT |
static IRI |
VCARD4.HOME
vcard:Home
|
static IRI |
FOAF.HOMEPAGE |
static IRI |
DOAP.HOMEPAGE |
static IRI |
VCARD4.HONORIFIC_PREFIX
vcard:honorific-prefix
|
static IRI |
VCARD4.HONORIFIC_SUFFIX
vcard:honorific-suffix
|
static IRI |
FN.HOURS_FROM_DATETIME
fn:hours-from-dateTime
|
static IRI |
RDF.HTML
http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML
|
static IRI |
FOAF.ICQ_CHAT_ID |
static IRI |
XMLSchema.ID
http://www.w3.org/2001/XMLSchema#ID
|
static IRI |
ORG.IDENTIFIER
void:identifier
|
static IRI |
DCTERMS.IDENTIFIER
http://purl.org/dc/terms/identifier
|
static IRI |
DC.IDENTIFIER
dc:identifier
|
static IRI |
XMLSchema.IDREF
http://www.w3.org/2001/XMLSchema#IDREF
|
static IRI |
XMLSchema.IDREFS
http://www.w3.org/2001/XMLSchema#IDREFS
|
static IRI |
SP.IF |
static IRI |
SHACL.IGNORED_PROPERTIES
sh:ignoredProperties
|
static IRI |
FOAF.IMAGE |
static IRI |
FOAF.IMG |
static IRI |
DOAP.IMPLEMENTS |
static IRI |
OWL.IMPORTS
http://www.w3.org/2002/07/owl#imports
|
static IRI |
SPIN.IMPORTS_PROPERTY
http://spinrdf.org/spin#imports Can be used to link an RDF graph (usually the instance of owl:Ontology) with a
SPIN library to define constraints.
|
static IRI |
DCTERMS.IMT
http://purl.org/dc/terms/IMT
|
static IRI |
SHACL.IN
sh:in
|
static IRI |
SHACL.IN_CONSTRAINT_COMPONENT
sh:InConstraintComponent
|
static IRI |
SHACL.IN_CONSTRAINT_COMPONENT_IN
sh:InConstraintComponent-in
|
static IRI |
VOID.IN_DATASET
void:inDataset
|
static IRI |
SKOS.IN_SCHEME
The skos:inScheme relation.
|
static IRI |
LDP.INBOX
ldp:inbox
|
static IRI |
OWL.INCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#incompatibleWith
|
static IRI |
LIST.INDEX |
static IRI |
SPIF.INDEX_OF_FUNCTION |
static IRI |
LDP.INDIRECT_CONTAINER
ldp:IndirectContainer
|
static IRI |
VCARD4.INDIVIDUAL
vcard:Individual
|
static IRI |
OWL.INDIVIDUAL
Deprecated.
|
static IRI |
SHACL.INFO
sh:Info
|
static IRI |
SPIN.INFO_VIOLATION_LEVEL |
static IRI |
SD.INPUT_FORMAT
input format
|
static IRI |
SP.Insert
Deprecated.
|
static IRI |
SP.INSERT_CLASS
Deprecated.
|
static IRI |
SP.INSERT_DATA_CLASS
http://spinrdf.org/sp#InsertData An Update operation to insert specific triples.
|
static IRI |
SP.INSERT_PATTERN_PROPERTY
http://spinrdf.org/sp#insertPattern Points to a list of sp:TripleTemplates or sp:NamedGraphs in a modify command.
|
static IRI |
LDP.INSERTED_CONTENT_RELATION
ldp:insertedContentRelation
|
static IRI |
DCTERMS.INSTRUCTIONAL_METHOD
http://purl.org/dc/terms/instructionalMethod
|
static IRI |
XMLSchema.INT
http://www.w3.org/2001/XMLSchema#int
|
static IRI |
XMLSchema.INTEGER
http://www.w3.org/2001/XMLSchema#integer
|
static IRI |
FOAF.INTEREST |
static IRI |
VCARD4.INTERNET
Deprecated.
|
static IRI |
GEOF.INTERSECTION |
static IRI |
OWL.INTERSECTIONOF
http://www.w3.org/2002/07/owl#intersectionOf
|
static IRI |
VCARD4.INTL
Deprecated.
|
static IRI |
SP.INTO_PROPERTY
http://spinrdf.org/sp#into The (optional) target of a LOAD Update operation.
|
static IRI |
SHACL.INVERSE_PATH
sh:inversePath
|
static IRI |
OWL.INVERSEFUNCTIONALPROPERTY
http://www.w3.org/2002/07/owl#InverseFunctionalProperty
|
static IRI |
OWL.INVERSEOF
http://www.w3.org/2002/07/owl#inverseOf
|
static IRI |
SPIF.INVOKE_FUNCTION |
static IRI |
SP.IRI |
static IRI |
SHACL.IRI
sh:IRI
|
static IRI |
SHACL.IRI_OR_LITERAL
sh:IRIOrLiteral
|
static IRI |
OWL.IRREFLEXIVEPROPERTY
http://www.w3.org/2002/07/owl#IrreflexiveProperty
|
static IRI |
SP.IS_BLANK |
static IRI |
DCTERMS.IS_FORMAT_OF
http://purl.org/dc/terms/isFormatOf
|
static IRI |
SP.IS_IRI |
static IRI |
SP.IS_LITERAL |
static IRI |
LDP.IS_MEMBER_OF_RELATION
ldp:isMemberOfRelation
|
static IRI |
SP.IS_NUMERIC |
static IRI |
DCTERMS.IS_PART_OF
http://purl.org/dc/terms/isPartOf
|
static IRI |
FOAF.IS_PRIMARY_TOPIC_OF |
static IRI |
DCTERMS.IS_REFERENCED_BY
http://purl.org/dc/terms/isReferencedBy
|
static IRI |
DCTERMS.IS_REPLACED_BY
http://purl.org/dc/terms/isReplacedBy
|
static IRI |
DCTERMS.IS_REQUIRED_BY
http://purl.org/dc/terms/isRequiredBy
|
static IRI |
SP.IS_URI |
static IRI |
SPIF.IS_VALID_URI_FUNCTION |
static IRI |
DCTERMS.IS_VERSION_OF
http://purl.org/dc/terms/isVersionOf
|
static IRI |
RDFS.ISDEFINEDBY
http://www.w3.org/2000/01/rdf-schema#isDefinedBy
|
static IRI |
VCARD4.ISDN
Deprecated.
|
static IRI |
DCTERMS.ISO3166
http://purl.org/dc/terms/ISO3166
|
static IRI |
DCTERMS.ISO639_2
http://purl.org/dc/terms/ISO639-2
|
static IRI |
DCTERMS.ISO639_3
http://purl.org/dc/terms/ISO639-3
|
static IRI |
DCTERMS.ISSUED
http://purl.org/dc/terms/issued
|
static IRI |
FOAF.JABBER_ID |
static IRI |
SPINX.JAVA_SCRIPT_CODE_PROPERTY |
static IRI |
SPINX.JAVA_SCRIPT_FILE_PROPERTY |
static IRI |
DCTERMS.JURISDICTION
http://purl.org/dc/terms/Jurisdiction
|
static IRI |
VCARD4.KEY
vcard:key
|
static IRI |
DCAT.KEYWORD
dcat:keyword
|
static IRI |
VCARD4.KIN
vcard:Kin
|
static IRI |
VCARD4.KIND
vcard:Kind
|
static IRI |
FOAF.KNOWS |
static IRI |
VCARD4.LABEL
Deprecated.
|
static IRI |
SKOSXL.LABEL
The skosxl:Label class.
|
static IRI |
RDFS.LABEL
http://www.w3.org/2000/01/rdf-schema#label
|
static IRI |
VCARD4.LABEL_PROP
Deprecated.
|
static IRI |
FOAF.LABEL_PROPERTY |
static IRI |
SKOSXL.LABEL_RELATION
The skosxl:labelRelation relation.
|
static IRI |
SHACL.LABEL_TEMPLATE
sh:labelTemplate
|
static IRI |
SPIN.LABEL_TEMPLATE_PROPERTY
http://spinrdf.org/spin#labelTemplate A template string for displaying instantiations of a module in
human-readable form.
|
static IRI |
DCAT.LANDING_PAGE
dcat:landingPage
|
static IRI |
SP.LANG |
static IRI |
RDF.LANGSTRING
http://www.w3.org/1999/02/22-rdf-syntax-ns#langString
|
static IRI |
XMLSchema.LANGUAGE
http://www.w3.org/2001/XMLSchema#language
|
static IRI |
VCARD4.LANGUAGE
vcard:language
|
static IRI |
SD.LANGUAGE
Language
|
static IRI |
DCTERMS.LANGUAGE
http://purl.org/dc/terms/language
|
static IRI |
DC.LANGUAGE
dc:language
|
static IRI |
SD.LANGUAGE_EXTENSION
language extension
|
static IRI |
SHACL.LANGUAGE_IN
sh:languageIn
|
static IRI |
SHACL.LANGUAGE_IN_CONSTRAINT_COMPONENT
sh:LanguageInConstraintComponent
|
static IRI |
SHACL.LANGUAGE_IN_CONSTRAINT_COMPONENT_LANGUAGE_IN
sh:LanguageInConstraintComponent-languageIn
|
static IRI |
SPIF.LAST_INDEX_OF_FUNCTION |
static IRI |
FOAF.LAST_NAME |
static IRI |
VCARD4.LATITUDE
Deprecated.
|
static IRI |
DCTERMS.LCC
http://purl.org/dc/terms/LCC
|
static IRI |
DCTERMS.LCSH
http://purl.org/dc/terms/LCSH
|
static IRI |
SP.LE |
static IRI |
ROV.LEGAL_NAME
rov:legalName
|
static IRI |
LIST.LENGTH |
static IRI |
SHACL.LESS_THAN
sh:lessThan
|
static IRI |
SHACL.LESS_THAN_CONSTRAINT_COMPONENT
sh:LessThanConstraintComponent
|
static IRI |
SHACL.LESS_THAN_CONSTRAINT_COMPONENT_LESS_THAN
sh:LessThanConstraintComponent-lessThan
|
static IRI |
SHACL.LESS_THAN_OR_EQUALS
sh:lessThanOrEquals
|
static IRI |
SHACL.LESS_THAN_OR_EQUALS_CONSTRAINT_COMPONENT
sh:LessThanOrEqualsConstraintComponent
|
static IRI |
SHACL.LESS_THAN_OR_EQUALS_CONSTRAINT_COMPONENT_LESS_THAN_OR_EQUALS
sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals
|
static IRI |
SP.Let
Deprecated.
|
static IRI |
SP.LET_CLASS
Deprecated.
|
static IRI |
RDF.LI
http://www.w3.org/1999/02/22-rdf-syntax-ns#li
|
static IRI |
SPIN.LIBRARY_ONTOLOGY_CLASS
http://spinrdf.org/spin#LibraryOntology A marker class that can be attached to base URIs (ontologies) to instruct
SPIN engines that this ontology only contains a library of SPIN declarations.
|
static IRI |
DOAP.LICENSE |
static IRI |
DCTERMS.LICENSE
http://purl.org/dc/terms/license
|
static IRI |
DCTERMS.LICENSE_DOCUMENT
http://purl.org/dc/terms/LicenseDocument
|
static IRI |
SP.LIMIT_PROPERTY
http://spinrdf.org/sp#limit The LIMIT solution modifier of a Query.
|
static IRI |
DCTERMS.LINGUISTIC_SYSTEM
http://purl.org/dc/terms/LinguisticSystem
|
static IRI |
VOID.LINK_PREDICATE
void:linkPredicate
|
static IRI |
ORG.LINKED_TO
void:linkedTo
|
static IRI |
VOID.LINKSET
void:Linkset
|
static IRI |
RDF.LIST
http://www.w3.org/1999/02/22-rdf-syntax-ns#List
|
static IRI |
SHACL.LITERAL
sh:Literal
|
static IRI |
RDFS.LITERAL
http://www.w3.org/2000/01/rdf-schema#Literal
|
static IRI |
SKOSXL.LITERAL_FORM
The skosxl:literalForm property.
|
static IRI |
SP.LOAD_CLASS
http://spinrdf.org/sp#Load A LOAD Update operation.
|
static IRI |
VCARD4.LOCALITY
vcard:locality
|
static IRI |
AFN.LOCALNAME
http://jena.hpl.hp.com/ARQ/function#localname The LocalName QueryModelNode as a SPARQL function.
|
static IRI |
VCARD4.LOCATION
vcard:Location
|
static IRI |
ORG.LOCATION
void:location
|
static IRI |
LOCN.LOCATION
locn:location
|
static IRI |
DCTERMS.LOCATION
http://purl.org/dc/terms/Location
|
static IRI |
DCTERMS.LOCATION_PERIOD_OR_JURISDICTION
http://purl.org/dc/terms/LocationPeriodOrJurisdiction
|
static IRI |
LOCN.LOCATOR_DESIGNATOR
locn:locatorDesignator
|
static IRI |
LOCN.LOCATOR_NAME
locn:locatorName
|
static IRI |
VCARD4.LOGO
vcard:logo
|
static IRI |
FOAF.LOGO |
static IRI |
XMLSchema.LONG
http://www.w3.org/2001/XMLSchema#long
|
static IRI |
VCARD4.LONGITUDE
Deprecated.
|
static IRI |
FN.LOWER_CASE
fn:lower-case
|
static IRI |
SPIF.LOWER_CASE_FUNCTION |
static IRI |
SPIF.LOWER_TITLE_CASE_FUNCTION |
static IRI |
SP.LT |
static IRI |
FOAF.MADE |
static IRI |
SPIN.MAGIC_PROPERTIES_CLASS
http://spinrdf.org/spin#MagicProperties An abstract superclass that can be used to group all spin:MagicProperty
instances under a single parent class.
|
static IRI |
SPIN.MAGIC_PROPERTY_CLASS |
static IRI |
VCARD4.MAILER
Deprecated.
|
static IRI |
DOAP.MAILING_LIST |
static IRI |
DOAP.MAINTAINER |
static IRI |
FOAF.MAKER |
static IRI |
VCARD4.MALE
vcard:Male
|
static IRI |
EARL.MANUAL |
static IRI |
SKOS.MAPPING_RELATION
The skos:mappingRelation relation.
|
static IRI |
SP.MAX_CLASS
http://spinrdf.org/sp#Max Represents MAX aggregations.
|
static IRI |
SHACL.MAX_COUNT
sh:maxCount
|
static IRI |
SHACL.MAX_COUNT_CONSTRAINT_COMPONENT
sh:MaxCountConstraintComponent
|
static IRI |
SHACL.MAX_COUNT_CONSTRAINT_COMPONENT_MAX_COUNT
sh:MaxCountConstraintComponent-maxCount
|
static IRI |
SHACL.MAX_EXCLUSIVE
sh:maxExclusive
|
static IRI |
SHACL.MAX_EXCLUSIVE_CONSTRAINT_COMPONENT
sh:MaxExclusiveConstraintComponent
|
static IRI |
SHACL.MAX_EXCLUSIVE_CONSTRAINT_COMPONENT_MAX_EXCLUSIVE
sh:MaxExclusiveConstraintComponent-maxExclusive
|
static IRI |
SHACL.MAX_INCLUSIVE
sh:maxInclusive
|
static IRI |
SHACL.MAX_INCLUSIVE_CONSTRAINT_COMPONENT
sh:MaxInclusiveConstraintComponent
|
static IRI |
SHACL.MAX_INCLUSIVE_CONSTRAINT_COMPONENT_MAX_INCLUSIVE
sh:MaxInclusiveConstraintComponent-maxInclusive
|
static IRI |
SHACL.MAX_LENGTH
sh:maxLength
|
static IRI |
SHACL.MAX_LENGTH_CONSTRAINT_COMPONENT
sh:MaxLengthConstraintComponent
|
static IRI |
SHACL.MAX_LENGTH_CONSTRAINT_COMPONENT_MAX_LENGTH
sh:MaxLengthConstraintComponent-maxLength
|
static IRI |
OWL.MAXCARDINALITY
http://www.w3.org/2002/07/owl#maxCardinality
|
static IRI |
OWL.MAXQUALIFIEDCARDINALITY
http://www.w3.org/2002/07/owl#maxQualifiedCardinality
|
static IRI |
FOAF.MBOX |
static IRI |
FOAF.MBOX_SHA1SUM |
static IRI |
VCARD4.ME
vcard:Me
|
static IRI |
DCTERMS.MEDIA_TYPE
http://purl.org/dc/terms/MediaType
|
static IRI |
DCAT.MEDIA_TYPE
dcat:mediaType
|
static IRI |
DCTERMS.MEDIA_TYPE_OR_EXTENT
http://purl.org/dc/terms/MediaTypeOrExtent
|
static IRI |
DCTERMS.MEDIATOR
http://purl.org/dc/terms/mediator
|
static IRI |
DCTERMS.MEDIUM
http://purl.org/dc/terms/medium
|
static IRI |
SKOS.MEMBER
The skos:member relation.
|
static IRI |
RDFS.MEMBER
http://www.w3.org/2000/01/rdf-schema#member
|
static IRI |
ORG.MEMBER
void:member
|
static IRI |
LIST.MEMBER |
static IRI |
LDP.MEMBER
ldp:member
|
static IRI |
FOAF.MEMBER |
static IRI |
ORG.MEMBER_DURING
void:memberDuring
|
static IRI |
SKOS.MEMBER_LIST
The skos:memberList relation.
|
static IRI |
ORG.MEMBER_OF
void:memberOf
|
static IRI |
LDP.MEMBER_SUBJECT
ldp:MemberSubject
|
static IRI |
OWL.MEMBERS
http://www.w3.org/2002/07/owl#members
|
static IRI |
ORG.MEMBERSHIP
void:Membership
|
static IRI |
FOAF.MEMBERSHIP_CLASS |
static IRI |
LDP.MEMBERSHIP_RESOURCE
ldp:membershipResource
|
static IRI |
DCTERMS.MESH
http://purl.org/dc/terms/MESH
|
static IRI |
SHACL.MESSAGE
sh:message
|
static IRI |
VCARD4.MET
vcard:Met
|
static IRI |
DCTERMS.METHOD_OF_ACCRUAL
http://purl.org/dc/terms/MethodOfAccrual
|
static IRI |
DCTERMS.METHOD_OF_INSTRUCTION
http://purl.org/dc/terms/MethodOfInstruction
|
static IRI |
SP.MIN_CLASS
http://spinrdf.org/sp#Min Represents MIN aggregations.
|
static IRI |
SHACL.MIN_COUNT
sh:minCount
|
static IRI |
SHACL.MIN_COUNT_CONSTRAINT_COMPONENT
sh:MinCountConstraintComponent
|
static IRI |
SHACL.MIN_COUNT_CONSTRAINT_COMPONENT_MIN_COUNT
sh:MinCountConstraintComponent-minCount
|
static IRI |
SHACL.MIN_EXCLUSIVE
sh:minExclusive
|
static IRI |
SHACL.MIN_EXCLUSIVE_CONSTRAINT_COMPONENT
sh:MinExclusiveConstraintComponent
|
static IRI |
SHACL.MIN_EXCLUSIVE_CONSTRAINT_COMPONENT_MIN_EXCLUSIVE
sh:MinExclusiveConstraintComponent-minExclusive
|
static IRI |
SHACL.MIN_INCLUSIVE
sh:minInclusive
|
static IRI |
SHACL.MIN_INCLUSIVE_CONSTRAINT_COMPONENT
sh:MinInclusiveConstraintComponent
|
static IRI |
SHACL.MIN_INCLUSIVE_CONSTRAINT_COMPONENT_MIN_INCLUSIVE
sh:MinInclusiveConstraintComponent-minInclusive
|
static IRI |
SHACL.MIN_LENGTH
sh:minLength
|
static IRI |
SHACL.MIN_LENGTH_CONSTRAINT_COMPONENT
sh:MinLengthConstraintComponent
|
static IRI |
SHACL.MIN_LENGTH_CONSTRAINT_COMPONENT_MIN_LENGTH
sh:MinLengthConstraintComponent-minLength
|
static IRI |
OWL.MINCARDINALITY
http://www.w3.org/2002/07/owl#minCardinality
|
static IRI |
OWL.MINQUALIFIEDCARDINALITY
http://www.w3.org/2002/07/owl#minQualifiedCardinality
|
static IRI |
SP.MINUS_CLASS
http://spinrdf.org/sp#Minus A MINUS element group.
|
static IRI |
FN.MINUTES_FROM_DATETIME
fn:minutes-from-dateTime
|
static IRI |
SPIF.MOD_FUNCTION |
static IRI |
SP.MOD_MAX_PROPERTY |
static IRI |
SP.MOD_MIN_PROPERTY |
static IRI |
SP.MOD_PATH_CLASS
http://spinrdf.org/sp#ModPath A modified path such as rdfs:subClassOf*.
|
static IRI |
EARL.MODE |
static IRI |
VCARD4.MODEM
Deprecated.
|
static IRI |
DCTERMS.MODIFIED
http://purl.org/dc/terms/modified
|
static IRI |
SP.MODIFY_CLASS
http://spinrdf.org/sp#Modify Represents a MODIFY (part of SPARQL UPDATE language).
|
static IRI |
SPIN.MODULE_CLASS
http://spinrdf.org/spin#Module An abstract building block of a SPARQL system.
|
static IRI |
SPIN.MODULES_CLASS
http://spinrdf.org/spin#Modules An "artificial" parent class for all Functions and Templates.
|
static IRI |
FN.MONTH_FROM_DATETIME
fn:month-from-dateTime
|
static IRI |
VCARD4.MSG
Deprecated.
|
static IRI |
FOAF.MSN_CHAT_ID |
static IRI |
SP.MUL |
static IRI |
VCARD4.MUSE
vcard:Muse
|
static IRI |
FOAF.MYERS_BRIGGS |
static IRI |
VCARD4.N
vcard:n
|
static IRI |
XMLSchema.NAME
http://www.w3.org/2001/XMLSchema#Name
|
static IRI |
VCARD4.NAME
vcard:Name
|
static IRI |
SHACL.NAME
sh:name
|
static IRI |
SD.NAME
name
|
static IRI |
FOAF.NAME |
static IRI |
DOAP.NAME
Properties
|
static IRI |
SPIF.NAME_FUNCTION |
static IRI |
SP.NAMED_GRAPH_CLASS
http://spinrdf.org/sp#NamedGraph A named Graph element such as GRAPH
|
static IRI |
SD.NAMED_GRAPH_CLASS
Named Graph
|
static IRI |
SD.NAMED_GRAPH_PROPERTY
named graph
|
static IRI |
SP.NAMED_PROPERTY
http://spinrdf.org/sp#named Used in DROP and CLEAR.
|
static IRI |
OWL.NAMEDINDIVIDUAL
http://www.w3.org/2002/07/owl#NamedIndividual
|
static IRI |
SHACL.NAMESPACE_PROP
sh:namespace
|
static IRI |
SKOS.NARROW_MATCH
The skos:narrowMatch relation.
|
static IRI |
SKOS.NARROWER
The skos:narrower relation.
|
static IRI |
SKOS.NARROWER_TRANSITIVE
The skos:narrowerTransitive relation.
|
static IRI |
XMLSchema.NCNAME
http://www.w3.org/2001/XMLSchema#NCName
|
static IRI |
SP.NE |
static IRI |
XMLSchema.NEGATIVE_INTEGER
http://www.w3.org/2001/XMLSchema#negativeInteger
|
static IRI |
OWL.NEGATIVEPROPERTYASSERTION
http://www.w3.org/2002/07/owl#NegativePropertyAssertion
|
static IRI |
VCARD4.NEIGHBOR
vcard:Neighbor
|
static IRI |
SPIN.NEXT_RULE_PROPERTY_PROPERTY
http://spinrdf.org/spin#nextRuleProperty Can be used to link two sub-properties of spin:rule (or spin:rule
itself) to instruct the SPIN engine to execute one set of rules before another one.
|
static IRI |
FOAF.NICK |
static IRI |
VCARD4.NICKNAME
vcard:nickname
|
static IRI |
SESAME.NIL
The SPARQL null context identifier ( http://www.openrdf.org/schema/sesame#nil)
|
static IRI |
RDF.NIL
http://www.w3.org/1999/02/22-rdf-syntax-ns#nil
|
static IRI |
DCTERMS.NLM
http://purl.org/dc/terms/NLM
|
static IRI |
XMLSchema.NMTOKEN
http://www.w3.org/2001/XMLSchema#NMTOKEN
|
static IRI |
XMLSchema.NMTOKENS
http://www.w3.org/2001/XMLSchema#NMTOKENS
|
static IRI |
SHACL.NODE
sh:node
|
static IRI |
SHACL.NODE_CONSTRAINT_COMPONENT
sh:NodeConstraintComponent
|
static IRI |
SHACL.NODE_CONSTRAINT_COMPONENT_NODE
sh:NodeConstraintComponent-node
|
static IRI |
SHACL.NODE_KIND
sh:NodeKind
|
static IRI |
SHACL.NODE_KIND_CONSTRAINT_COMPONENT
sh:NodeKindConstraintComponent
|
static IRI |
SHACL.NODE_KIND_CONSTRAINT_COMPONENT_NODE_KIND
sh:NodeKindConstraintComponent-nodeKind
|
static IRI |
SHACL.NODE_KIND_PROP
sh:nodeKind
|
static IRI |
SP.NODE_PROPERTY |
static IRI |
SHACL.NODE_SHAPE
sh:NodeShape
|
static IRI |
SHACL.NODE_VALIDATOR
sh:nodeValidator
|
static IRI |
XMLSchema.NON_NEGATIVE_INTEGER
http://www.w3.org/2001/XMLSchema#nonNegativeInteger
|
static IRI |
XMLSchema.NON_POSITIVE_INTEGER
http://www.w3.org/2001/XMLSchema#nonPositiveInteger
|
static IRI |
LDP.NON_RDF_SOURCE
ldp:NonRDFSource
|
static IRI |
VCARD4.NONE
vcard:None
|
static IRI |
XMLSchema.NORMALIZEDSTRING
http://www.w3.org/2001/XMLSchema#normalizedString
|
static IRI |
SP.NOT |
static IRI |
SHACL.NOT
sh:not
|
static IRI |
SHACL.NOT_CONSTRAINT_COMPONENT
sh:NotConstraintComponent
|
static IRI |
SHACL.NOT_CONSTRAINT_COMPONENT_NOT
sh:NotConstraintComponent-not
|
static IRI |
SP.NOT_EXISTS |
static IRI |
SP.NOT_EXISTS_CLASS
http://spinrdf.org/sp#NotExists A NOT EXISTS element group (ARQ only).
|
static IRI |
EARL.NOTAPPLICABLE |
static IRI |
XMLSchema.NOTATION
http://www.w3.org/2001/XMLSchema#NOTATION
|
static IRI |
SKOS.NOTATION
The skos:notation property.
|
static IRI |
EARL.NOTAVAILABLE |
static IRI |
VCARD4.NOTE
vcard:note
|
static IRI |
SKOS.NOTE
The skos:note property.
|
static IRI |
OWL.NOTHING
http://www.w3.org/2002/07/owl#Nothing
|
static IRI |
EARL.NOTTESTED |
static IRI |
FN.NUMERIC_ABS
fn:numeric-abs
|
static IRI |
FN.NUMERIC_CEIL
fn:numeric-ceil
|
static IRI |
FN.NUMERIC_FLOOR
fn:numeric-floor
|
static IRI |
FN.NUMERIC_ROUND
fn:numeric-round
|
static IRI |
RDF.OBJECT
http://www.w3.org/1999/02/22-rdf-syntax-ns#object
|
static IRI |
SPL.OBJECT_FUNCTION
http://spinrdf.org/spl#object
|
static IRI |
SP.OBJECT_PROPERTY
http://spinrdf.org/sp#object An RDF Node or Variable describing the object of a triple.
|
static IRI |
OWL.OBJECTPROPERTY
http://www.w3.org/2002/07/owl#ObjectProperty
|
static IRI |
VOID.OBJECTS_TARGET
void:objectsTarget
|
static IRI |
SP.OFFSET_PROPERTY
http://spinrdf.org/sp#offset The OFFSET solution modifier of a Query.
|
static IRI |
DOAP.OLD_HOMEPAGE |
static IRI |
OWL.ONCLASS
http://www.w3.org/2002/07/owl#onClass
|
static IRI |
OWL.ONDATARANGE
http://www.w3.org/2002/07/owl#onDataRange
|
static IRI |
OWL.ONDATATYPE
http://www.w3.org/2002/07/owl#onDatatype
|
static IRI |
SHACL.ONE_OR_MORE_PATH
sh:oneOrMorePath
|
static IRI |
OWL.ONEOF
http://www.w3.org/2002/07/owl#oneOf
|
static IRI |
FOAF.ONLINE_ACCOUNT |
static IRI |
FOAF.ONLINE_CHAT_ACCOUNT |
static IRI |
FOAF.ONLINE_ECOMMERCE_ACCOUNT |
static IRI |
FOAF.ONLINE_GAMING_ACCOUNT |
static IRI |
OWL.ONPROPERTIES
http://www.w3.org/2002/07/owl#onProperties
|
static IRI |
OWL.ONPROPERTY
http://www.w3.org/2002/07/owl#onProperty
|
static IRI |
OWL.ONTOLOGY
http://www.w3.org/2002/07/owl#Ontology
|
static IRI |
OWL.ONTOLOGYPROPERTY
http://www.w3.org/2002/07/owl#OntologyProperty
|
static IRI |
VOID.OPEN_SEARCH_DESCRIPTION
void:openSearchDescription
|
static IRI |
FOAF.OPENID |
static IRI |
SHACL.OPTIONAL
sh:optional
|
static IRI |
SP.OPTIONAL_CLASS
http://spinrdf.org/sp#Optional An optional element in a query.
|
static IRI |
SPL.OPTIONAL_PROPERTY
http://spinrdf.org/spl#optional
|
static IRI |
SP.OR |
static IRI |
SHACL.OR
sh:or
|
static IRI |
SHACL.OR_CONSTRAINT_COMPONENT
sh:OrConstraintComponent
|
static IRI |
SHACL.OR_CONSTRAINT_COMPONENT_OR
sh:OrConstraintComponent-or
|
static IRI |
SHACL.ORDER
sh:order
|
static IRI |
SP.ORDER_BY_CONDITION_CLASS
http://spinrdf.org/sp#OrderByCondition An abstract base class for ascending or descending order conditions.
|
static IRI |
SP.ORDER_BY_PROPERTY
http://spinrdf.org/sp#orderBy Links a query with an ORDER BY clause where the values are rdf:List containing
OrderByConditions or expressions.
|
static IRI |
SKOS.ORDERED_COLLECTION
The skos:OrderedCollection class
|
static IRI |
VCARD4.ORG
vcard:org
|
static IRI |
ROV.ORG_ACTIVITY
rov:orgActivity
|
static IRI |
ROV.ORG_STATUS
rov:orgStatus
|
static IRI |
ROV.ORG_TYPE
rov:orgType
|
static IRI |
VCARD4.ORGANIZATION
vcard:Organization
|
static IRI |
ORG.ORGANIZATION
void:Organization
|
static IRI |
FOAF.ORGANIZATION |
static IRI |
VCARD4.ORGANIZATION_NAME
vcard:organization-name
|
static IRI |
VCARD4.ORGANIZATION_UNIT
vcard:organization-unit
|
static IRI |
ORG.ORGANIZATIONAL_COLLABORATION
void:OrganizationalCollaboration
|
static IRI |
ORG.ORGANIZATIONAL_UNIT
void:OrganizationalUnit
|
static IRI |
ORG.ORIGINAL_ORGANIZATION
void:originalOrganization
|
static IRI |
VCARD4.OTHER
vcard:Other
|
static IRI |
EARL.OUTCOME |
static IRI |
LDP.PAGE
ldp:Page
|
static IRI |
FOAF.PAGE |
static IRI |
LDP.PAGE_SEQUENCE
ldp:pageSequence
|
static IRI |
LDP.PAGE_SORT_COLLATION
ldp:pageSortCollation
|
static IRI |
LDP.PAGE_SORT_CRITERIA
ldp:pageSortCriteria
|
static IRI |
LDP.PAGE_SORT_CRITERION
ldp:PageSortCriterion
|
static IRI |
LDP.PAGE_SORT_ORDER
ldp:pageSortOrder
|
static IRI |
LDP.PAGE_SORT_PREDICATE
ldp:pageSortPredicate
|
static IRI |
VCARD4.PAGER
vcard:Pager
|
static IRI |
SHACL.PARAMETER
sh:Parameter
|
static IRI |
SHACL.PARAMETER_PROP
sh:parameter
|
static IRI |
SHACL.PARAMETERIZABLE
sh:Parameterizable
|
static IRI |
VCARD4.PARCEL
Deprecated.
|
static IRI |
VCARD4.PARENT
vcard:Parent
|
static IRI |
SPIF.PARSE_DATE_FUNCTION |
static IRI |
EARL.PASS |
static IRI |
FOAF.PAST_PROJECT |
static IRI |
SHACL.PATH
sh:path
|
static IRI |
SP.PATH_CLASS
http://spinrdf.org/sp#Path The base class of SPARQL property path expressions.
|
static IRI |
SP.PATH_PROPERTY
http://spinrdf.org/sp#path Points from a TriplePath to its path.
|
static IRI |
SP.PATH1_PROPERTY
http://spinrdf.org/sp#path1 The first child path of a property path.
|
static IRI |
SP.PATH2_PROPERTY
http://spinrdf.org/sp#path2 The second child path of a property path.
|
static IRI |
SHACL.PATTERN
sh:pattern
|
static IRI |
SHACL.PATTERN_CONSTRAINT_COMPONENT
sh:PatternConstraintComponent
|
static IRI |
SHACL.PATTERN_CONSTRAINT_COMPONENT_FLAGS
sh:PatternConstraintComponent-flags
|
static IRI |
SHACL.PATTERN_CONSTRAINT_COMPONENT_PATTERN
sh:PatternConstraintComponent-pattern
|
static IRI |
VCARD4.PCS
Deprecated.
|
static IRI |
DCTERMS.PERIOD
http://purl.org/dc/terms/Period
|
static IRI |
DCTERMS.PERIOD_OF_TIME
http://purl.org/dc/terms/PeriodOfTime
|
static IRI |
FOAF.PERSON |
static IRI |
FOAF.PERSONAL_PROFILE_DOCUMENT |
static IRI |
FOAF.PHONE |
static IRI |
VCARD4.PHOTO
vcard:photo
|
static IRI |
DCTERMS.PHYSICAL_MEDIUM
http://purl.org/dc/terms/PhysicalMedium
|
static IRI |
DCTERMS.PHYSICAL_RESOURCE
http://purl.org/dc/terms/PhysicalResource
|
static IRI |
FOAF.PLAN |
static IRI |
LOCN.PO_BOX
locn:poBox
|
static IRI |
DCTERMS.POINT
http://purl.org/dc/terms/Point
|
static IRI |
DCTERMS.POLICY
http://purl.org/dc/terms/Policy
|
static IRI |
XMLSchema.POSITIVE_INTEGER
http://www.w3.org/2001/XMLSchema#positiveInteger
|
static IRI |
ORG.POST
void:Post
|
static IRI |
LOCN.POST_CODE
locn:postCode
|
static IRI |
ORG.POST_IN
void:postIn
|
static IRI |
LOCN.POST_NAME
locn:postName
|
static IRI |
VCARD4.POST_OFFICE_BOX
Deprecated.
|
static IRI |
VCARD4.POSTAL
Deprecated.
|
static IRI |
VCARD4.POSTAL_CODE
vcard:postal-code
|
static IRI |
RDF.PREDICATE
http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate
|
static IRI |
SPL.PREDICATE_PROPERTY
http://spinrdf.org/spl#predicate
|
static IRI |
SP.PREDICATE_PROPERTY
http://spinrdf.org/sp#predicate A resource or Variable describing the predicate of a triple.
|
static IRI |
VCARD4.PREF
Deprecated.
|
static IRI |
SKOSXL.PREF_LABEL
The skosxl:prefLabel property.
|
static IRI |
SKOS.PREF_LABEL
The skos:prefLabel lexical label property.
|
static IRI |
LDP.PREFER_CONTAINMENT
ldp:PreferContainment
|
static IRI |
LDP.PREFER_EMPTY_CONTAINER
Deprecated.
|
static IRI |
LDP.PREFER_MEMBERSHIP
ldp:PreferMembership
|
static IRI |
LDP.PREFER_MINIMAL_CONTAINER
ldp:PreferMinimalContainer
|
static IRI |
VANN.PREFERRED_NAMESPACE_PREFIX
The preferred namespace prefix to ue when using terms from this vocabulary in an XML document.
|
static IRI |
VANN.PREFERRED_NAMESPACE_URI
The preferred namespace URI to use when using terms from this vocabulary in an XML document.
|
static IRI |
SHACL.PREFIX_DECLARATION
sh:PrefixDeclaration
|
static IRI |
SHACL.PREFIX_PROP
sh:prefix
|
static IRI |
SHACL.PREFIXES
sh:prefixes
|
static IRI |
FOAF.PRIMARY_TOPIC |
static IRI |
OWL.PRIORVERSION
http://www.w3.org/2002/07/owl#priorVersion
|
static IRI |
SPIN.PRIVATE_PROPERTY
http://spinrdf.org/spin#private Can be set to true to indicate that a SPIN function is only meant to be used as a
helper of other functions, but not directly.
|
static IRI |
VCARD4.PRODID
vcard:prodid
|
static IRI |
DOAP.PROGRAMMING_LANGUAGE |
static IRI |
FOAF.PROJECT |
static IRI |
DOAP.PROJECT
Classes
|
static IRI |
VOID.PROPERTIES
void:properties
|
static IRI |
VOID.PROPERTY
void:property
|
static IRI |
SHACL.PROPERTY
sh:property
|
static IRI |
RDF.PROPERTY
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
static IRI |
SHACL.PROPERTY_CONSTRAINT_COMPONENT
sh:PropertyConstraintComponent
|
static IRI |
SHACL.PROPERTY_CONSTRAINT_COMPONENT_PROPERTY
sh:PropertyConstraintComponent-property
|
static IRI |
SD.PROPERTY_FEATURE
property feature
|
static IRI |
SHACL.PROPERTY_GROUP
sh:PropertyGroup
|
static IRI |
VOID.PROPERTY_PARTITION
void:propertyPartition
|
static IRI |
SHACL.PROPERTY_SHAPE
sh:PropertyShape
|
static IRI |
SHACL.PROPERTY_VALIDATOR
sh:propertyValidator
|
static IRI |
OWL.PROPERTYCHAINAXIOM
http://www.w3.org/2002/07/owl#propertyChainAxiom
|
static IRI |
OWL.PROPERTYDISJOINTWITH
http://www.w3.org/2002/07/owl#propertyDisjointWith
|
static IRI |
DCTERMS.PROVENANCE
http://purl.org/dc/terms/provenance
|
static IRI |
DCTERMS.PROVENANCE_STATEMENT
http://purl.org/dc/terms/ProvenanceStatement
|
static IRI |
FOAF.PUBLICATIONS |
static IRI |
DCTERMS.PUBLISHER
http://purl.org/dc/terms/publisher
|
static IRI |
DC.PUBLISHER
dc:publisher
|
static IRI |
ORG.PURPOSE
void:purpose
|
static IRI |
XMLSchema.QNAME
http://www.w3.org/2001/XMLSchema#QName
|
static IRI |
SESAMEQNAME.QNAME
http://www.openrdf.org/schema/qname#qname
|
static IRI |
SHACL.QUALIFIED_MAX_COUNT
sh:qualifiedMaxCount
|
static IRI |
SHACL.QUALIFIED_MAX_COUNT_CONSTRAINT_COMPONENT
sh:QualifiedMaxCountConstraintComponent
|
static IRI |
SHACL.QUALIFIED_MAX_COUNT_CONSTRAINT_COMPONENT_QUALIFIED_MAX_COUNT
sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount
|
static IRI |
SHACL.QUALIFIED_MAX_COUNT_CONSTRAINT_COMPONENT_QUALIFIED_VALUE_SHAPE
sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape
|
static IRI |
SHACL.QUALIFIED_MAX_COUNT_CONSTRAINT_COMPONENT_QUALIFIED_VALUE_SHAPES_DISJOINT
sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint
|
static IRI |
SHACL.QUALIFIED_MIN_COUNT
sh:qualifiedMinCount
|
static IRI |
SHACL.QUALIFIED_MIN_COUNT_CONSTRAINT_COMPONENT
sh:QualifiedMinCountConstraintComponent
|
static IRI |
SHACL.QUALIFIED_MIN_COUNT_CONSTRAINT_COMPONENT_QUALIFIED_MIN_COUNT
sh:QualifiedMinCountConstraintComponent-qualifiedMinCount
|
static IRI |
SHACL.QUALIFIED_MIN_COUNT_CONSTRAINT_COMPONENT_QUALIFIED_VALUE_SHAPE
sh:QualifiedMinCountConstraintComponent-qualifiedValueShape
|
static IRI |
SHACL.QUALIFIED_MIN_COUNT_CONSTRAINT_COMPONENT_QUALIFIED_VALUE_SHAPES_DISJOINT
sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint
|
static IRI |
SHACL.QUALIFIED_VALUE_SHAPE
sh:qualifiedValueShape
|
static IRI |
SHACL.QUALIFIED_VALUE_SHAPES_DISJOINT
sh:qualifiedValueShapesDisjoint
|
static IRI |
OWL.QUALIFIEDCARDINALITY
http://www.w3.org/2002/07/owl#qualifiedCardinality
|
static IRI |
SP.QUERY_CLASS
http://spinrdf.org/sp#Query Abstract base class of the various types of supported queries.
|
static IRI |
SPIN.QUERY_PROPERTY
http://spinrdf.org/spin#query Can be used to point from any resource to a Query.
|
static IRI |
SP.QUERY_PROPERTY
http://spinrdf.org/sp#query Links a SubQuery resource with the nested Query.
|
static IRI |
SPIF.RANDOM_FUNCTION |
static IRI |
RDFS.RANGE
http://www.w3.org/2000/01/rdf-schema#range
|
static IRI |
GEOF.RCC8_DC |
static IRI |
GEOF.RCC8_EC |
static IRI |
GEOF.RCC8_EQ |
static IRI |
GEOF.RCC8_NTPP |
static IRI |
GEOF.RCC8_NTPPI |
static IRI |
GEOF.RCC8_PO |
static IRI |
GEOF.RCC8_TPP |
static IRI |
GEOF.RCC8_TPPI |
static IRI |
LDP.RDF_SOURCE
ldp:RDFSource
|
static IRI |
SP.REDUCED_PROPERTY
http://spinrdf.org/sp#reduced A property with true to indicate that a Select query has a REDUCED flag.
|
static IRI |
DCTERMS.REFERENCES
http://purl.org/dc/terms/references
|
static IRI |
OWL.REFLEXIVEPROPERTY
http://www.w3.org/2002/07/owl#ReflexiveProperty
|
static IRI |
SP.REGEX |
static IRI |
VCARD4.REGION
vcard:region
|
static IRI |
ROV.REGISTERED_ORGANIZATION
rov:RegisteredOrganization
|
static IRI |
ROV.REGISTRATION
rov:registration
|
static IRI |
GEOF.RELATE |
static IRI |
SKOS.RELATED
The skos:related relation.
|
static IRI |
SKOS.RELATED_MATCH
The skos:relatedMatch relation.
|
static IRI |
VCARD4.RELATED_TYPE
vcard:RelatedType
|
static IRI |
DCTERMS.RELATION
http://purl.org/dc/terms/relation
|
static IRI |
DC.RELATION
dc:relation
|
static IRI |
DOAP.RELEASE |
static IRI |
ORG.REMUNERATION
void:remuneration
|
static IRI |
FN.REPLACE
fn:replace
|
static IRI |
SPIF.REPLACE_ALL_FUNCTION |
static IRI |
DCTERMS.REPLACES
http://purl.org/dc/terms/replaces
|
static IRI |
ORG.REPORTS_TO
void:reportsTo
|
static IRI |
DCTERMS.REQUIRES
http://purl.org/dc/terms/requires
|
static IRI |
SD.REQUIRES_DATASET
Requires Dataset
|
static IRI |
RDFS.RESOURCE
http://www.w3.org/2000/01/rdf-schema#Resource
|
static IRI |
LDP.RESOURCE
ldp:Resource
|
static IRI |
RDF.REST
http://www.w3.org/1999/02/22-rdf-syntax-ns#rest
|
static IRI |
OWL.RESTRICTION
http://www.w3.org/2002/07/owl#Restriction
|
static IRI |
SHACL.RESULT
sh:result
|
static IRI |
EARL.RESULT |
static IRI |
SHACL.RESULT_ANNOTATION
sh:ResultAnnotation
|
static IRI |
SHACL.RESULT_ANNOTATION_PROP
sh:resultAnnotation
|
static IRI |
SD.RESULT_FORMAT
result format
|
static IRI |
SHACL.RESULT_MESSAGE
sh:resultMessage
|
static IRI |
SP.RESULT_NODES_PROPERTY
http://spinrdf.org/sp#resultNodes Contains the result nodes (IRI resources or Variables) of a Describe query.
|
static IRI |
SHACL.RESULT_PATH
sh:resultPath
|
static IRI |
SHACL.RESULT_SEVERITY
sh:resultSeverity
|
static IRI |
SP.RESULT_VARIABLES_PROPERTY
http://spinrdf.org/sp#resultVariables An rdf:List of variables that are returned by a Select query.
|
static IRI |
ORG.RESULTED_FROM
void:resultedFrom
|
static IRI |
ORG.RESULTING_ORGANIZATION
void:resultingOrganization
|
static IRI |
SHACL.RETURN_TYPE
sh:returnType
|
static IRI |
SPIN.RETURN_TYPE_PROPERTY
http://spinrdf.org/spin#returnType The return type of a Function, e.g.
|
static IRI |
VCARD4.REV
vcard:rev
|
static IRI |
SP.REVERSE_LINK_PATH_CLASS |
static IRI |
SP.REVERSE_PATH_CLASS
http://spinrdf.org/sp#ReversePath A path with reversed direction.
|
static IRI |
DCTERMS.RFC1766
http://purl.org/dc/terms/RFC1766
|
static IRI |
DCTERMS.RFC3066
http://purl.org/dc/terms/RFC3066
|
static IRI |
DCTERMS.RFC4646
http://purl.org/dc/terms/RFC4646
|
static IRI |
DCTERMS.RFC5646
http://purl.org/dc/terms/RFC5646
|
static IRI |
DCTERMS.RIGHTS
http://purl.org/dc/terms/rights
|
static IRI |
DC.RIGHTS
dc:rights
|
static IRI |
DCTERMS.RIGHTS_HOLDER
http://purl.org/dc/terms/rightsHolder
|
static IRI |
DCTERMS.RIGHTS_STATEMENT
http://purl.org/dc/terms/RightsStatement
|
static IRI |
VCARD4.ROLE
vcard:role
|
static IRI |
ORG.ROLE
void:Role
|
static IRI |
ORG.ROLE_PROPERTY
void:roleProperty
|
static IRI |
VOID.ROOT_RESOURCE
void:rootResource
|
static IRI |
SPIN.RULE_CLASS
http://spinrdf.org/spin#Rule Groups together the kinds of SPARQL commands that can appear as SPIN rules and
constructors: CONSTRUCT, DELETE WHERE and DELETE/INSERT.
|
static IRI |
SPIN.RULE_PROPERTY
http://spinrdf.org/spin#rule An inferencing rule attached to a class.
|
static IRI |
SPIN.RULE_PROPERTY_CLASS
http://spinrdf.org/spin#RuleProperty The metaclass of spin:rule and its subproperties.
|
static IRI |
SPIN.RULE_PROPERTY_MAX_ITERATION_COUNT_PROPERTY
http://spinrdf.org/spin#rulePropertyMaxIterationCount Can be attached to spin:rule (or subclasses thereof) to
instruct a SPIN rules engine that it shall only execute the rules max times.
|
static IRI |
OWL.SAMEAS
http://www.w3.org/2002/07/owl#sameAs
|
static IRI |
SP.SAMPLE_CLASS |
static IRI |
FOAF.SCHOOL_HOMEPAGE |
static IRI |
SKOS.SCOPE_NOTE
The skos:scopeNote property.
|
static IRI |
FN.SECONDS_FROM_DATETIME
fn:seconds-from-dateTime
|
static IRI |
RDFS.SEEALSO
http://www.w3.org/2000/01/rdf-schema#seeAlso
|
static IRI |
SHACL.SELECT
sh:select
|
static IRI |
SP.SELECT_CLASS
http://spinrdf.org/sp#Select A SELECT-type query that returns variable bindings as its result.
|
static IRI |
SPIN.SELECT_PROPERTY |
static IRI |
SPIN.SELECT_TEMPLATE_CLASS
http://spinrdf.org/spin#SelectTemplate A SPIN template that wraps a SELECT query.
|
static IRI |
SPIN.SELECT_TEMPLATES_CLASS
http://spinrdf.org/spin#SelectTemplates Suggested abstract base class for all SelectTemplates.
|
static IRI |
SKOS.SEMANTIC_RELATION
The skos:semanticRelation relation.
|
static IRI |
EARL.SEMIAUTOMATIC |
static IRI |
RDF.SEQ
http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
|
static IRI |
SP.SEQ_PATH_CLASS
http://spinrdf.org/sp#SeqPath A sequence of multiple paths.
|
static IRI |
SD.SERVICE
Service
|
static IRI |
SP.SERVICE_CLASS
http://spinrdf.org/sp#Service A SERVICE call that matches a nested sub-pattern against a SPARQL end point
specified by a IRI.
|
static IRI |
SP.SERVICE_URI_PROPERTY
http://spinrdf.org/sp#serviceURI Used by sp:Service to specify the IRI of the SPARQL end point to invoke.
|
static IRI |
SHACL.SEVERITY
sh:Severity
|
static IRI |
SHACL.SEVERITY_PROP
sh:severity
|
static IRI |
GEOF.SF_CONTAINS |
static IRI |
GEOF.SF_CROSSES |
static IRI |
GEOF.SF_DISJOINT |
static IRI |
GEOF.SF_EQUALS |
static IRI |
GEOF.SF_INTERSECTS |
static IRI |
GEOF.SF_OVERLAPS |
static IRI |
GEOF.SF_TOUCHES |
static IRI |
GEOF.SF_WITHIN |
static IRI |
FOAF.SHA1 |
static IRI |
RDF4J.SHACL_SHAPE_GRAPH
Context identifier for persisting SHACL shape data in the
ShaclSail . |
static IRI |
SHACL.SHAPE
sh:Shape
|
static IRI |
SHACL.SHAPES_GRAPH
sh:shapesGraph
|
static IRI |
SHACL.SHAPES_GRAPH_WELL_FORMED
sh:shapesGraphWellFormed
|
static IRI |
XMLSchema.SHORT
http://www.w3.org/2001/XMLSchema#short
|
static IRI |
VCARD4.SIBLING
vcard:Sibling
|
static IRI |
SP.SILENT_PROPERTY |
static IRI |
ORG.SITE
void:Site
|
static IRI |
ORG.SITE_ADDRESS
void:siteAddress
|
static IRI |
ORG.SITE_OF
void:siteOf
|
static IRI |
DCTERMS.SIZE_OR_DURATION
http://purl.org/dc/terms/SizeOrDuration
|
static IRI |
FOAF.SKYPE_ID |
static IRI |
EARL.SOFTWARE |
static IRI |
OWL.SOMEVALUESFROM
http://www.w3.org/2002/07/owl#someValuesFrom
|
static IRI |
VCARD4.SORT_STRING
vcard:sort-string
|
static IRI |
VCARD4.SOUND
vcard:sound
|
static IRI |
DCTERMS.SOURCE
http://purl.org/dc/terms/source
|
static IRI |
DC.SOURCE
dc:source
|
static IRI |
SHACL.SOURCE_CONSTRAINT
sh:sourceConstraint
|
static IRI |
SHACL.SOURCE_CONSTRAINT_COMPONENT
sh:sourceConstraintComponent
|
static IRI |
SHACL.SOURCE_SHAPE
sh:sourceShape
|
static IRI |
OWL.SOURCEINDIVIDUAL
http://www.w3.org/2002/07/owl#sourceIndividual
|
static IRI |
SHACL.SPARQL
sh:sparql
|
static IRI |
SD.SPARQL_10_QUERY
SPARQL 1.0 Query
|
static IRI |
SD.SPARQL_11_QUERY
SPARQL 1.1 Query
|
static IRI |
SD.SPARQL_11_UPDATE
SPARQL 1.1 Update
|
static IRI |
SHACL.SPARQL_ASK_EXECUTABLE
sh:SPARQLAskExecutable
|
static IRI |
SHACL.SPARQL_ASK_VALIDATOR
sh:SPARQLAskValidator
|
static IRI |
SHACL.SPARQL_CONSTRAINT
sh:SPARQLConstraint
|
static IRI |
SHACL.SPARQL_CONSTRAINT_COMPONENT
sh:SPARQLConstraintComponent
|
static IRI |
SHACL.SPARQL_CONSTRAINT_COMPONENT_SPARQL
sh:SPARQLConstraintComponent-sparql
|
static IRI |
SHACL.SPARQL_CONSTRUCT_EXECUTABLE
sh:SPARQLConstructExecutable
|
static IRI |
VOID.SPARQL_ENDPOINT
void:sparqlEndpoint
|
static IRI |
SHACL.SPARQL_EXECUTABLE
sh:SPARQLExecutable
|
static IRI |
SHACL.SPARQL_FUNCTION
sh:SPARQLFunction
|
static IRI |
SHACL.SPARQL_SELECT_EXECUTABLE
sh:SPARQLSelectExecutable
|
static IRI |
SHACL.SPARQL_SELECT_VALIDATOR
sh:SPARQLSelectValidator
|
static IRI |
SHACL.SPARQL_TARGET
sh:SPARQLTarget
|
static IRI |
SHACL.SPARQL_TARGET_TYPE
sh:SPARQLTargetType
|
static IRI |
SHACL.SPARQL_UPDATE_EXECUTABLE
sh:SPARQLUpdateExecutable
|
static IRI |
SHACL.SPARQL_VALUES_DERIVER
sh:SPARQLValuesDeriver
|
static IRI |
DCTERMS.SPATIAL
http://purl.org/dc/terms/spatial
|
static IRI |
SPIF.SPLIT_PROPERTY |
static IRI |
VCARD4.SPOUSE
vcard:Spouse
|
static IRI |
DCTERMS.STANDARD
http://purl.org/dc/terms/Standard
|
static IRI |
FN.STARTS_WITH
fn:starts-with
|
static IRI |
RDF.STATEMENT
http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement
|
static IRI |
FOAF.STATUS |
static IRI |
SP.STR |
static IRI |
APF.STR_SPLIT |
static IRI |
VCARD4.STREET_ADDRESS
vcard:street-address
|
static IRI |
XMLSchema.STRING
http://www.w3.org/2001/XMLSchema#string
|
static IRI |
FN.STRING_LENGTH
fn:string-length
|
static IRI |
SP.SUB |
static IRI |
ORG.SUB_ORGANIZATION_OF
void:subOrganizationOf
|
static IRI |
SP.SUB_PATH_PROPERTY
http://spinrdf.org/sp#subPath The child path of a property path expression.
|
static IRI |
SP.SUB_QUERY_CLASS
http://spinrdf.org/sp#SubQuery A nested SELECT query inside of an element list.
|
static IRI |
RDFS.SUBCLASSOF
http://www.w3.org/2000/01/rdf-schema#subClassOf
|
static IRI |
RDF.SUBJECT
http://www.w3.org/1999/02/22-rdf-syntax-ns#subject
|
static IRI |
EARL.SUBJECT |
static IRI |
DCTERMS.SUBJECT
http://purl.org/dc/terms/subject
|
static IRI |
DC.SUBJECT
dc:subject
|
static IRI |
SP.SUBJECT_PROPERTY
http://spinrdf.org/sp#subject A resource or Variable describing the subject of a triple.
|
static IRI |
VOID.SUBJECTS_TARGET
void:subjectsTarget
|
static IRI |
RDFS.SUBPROPERTYOF
http://www.w3.org/2000/01/rdf-schema#subPropertyOf
|
static IRI |
VOID.SUBSET
void:subset
|
static IRI |
FN.SUBSTRING
fn:substring
|
static IRI |
FN.SUBSTRING_AFTER
fn:substring-after
|
static IRI |
FN.SUBSTRING_BEFORE
fn:substring-before
|
static IRI |
SP.SUM_CLASS
http://spinrdf.org/sp#Sum Represents sum aggregations, e.g.
|
static IRI |
SD.SUPPORTED_ENTAILMENT_PROFILE
supported entailment profile
|
static IRI |
SD.SUPPORTED_LANGUAGE
supported language
|
static IRI |
FOAF.SURNAME |
static IRI |
VCARD4.SWEETHEART
vcard:Sweetheart
|
static IRI |
GEOF.SYM_DIFFERENCE |
static IRI |
SPIN.SYMBOL_PROPERTY
http://spinrdf.org/spin#symbol The symbol of a function, e.g.
|
static IRI |
OWL.SYMMETRICPROPERTY
http://www.w3.org/2002/07/owl#SymmetricProperty
|
static IRI |
SP.SYSTEM_CLASS
http://spinrdf.org/sp#SystemClass An "artificial" root class that groups all SP classes.
|
static IRI |
SP.SYSTEM_PROPERTY
http://spinrdf.org/sp#systemProperty An abstract base proprerty that groups together the SP system properties.
|
static IRI |
SPIN.SYSTEM_PROPERTY_PROPERTY
http://spinrdf.org/spin#systemProperty An "abstract" base property that groups together those system properties
that the user will hardly ever need to see in property trees.
|
static IRI |
SPIN.TABLE_DATA_PROVIDER_CLASS
http://spinrdf.org/spin#TableDataProvider An abstraction of objects that can produce tabular data.
|
static IRI |
DCTERMS.TABLE_OF_CONTENTS
http://purl.org/dc/terms/tableOfContents
|
static IRI |
VOID.TARGET
void:target
|
static IRI |
SHACL.TARGET
sh:Target
|
static IRI |
SHACL.TARGET_CLASS
sh:targetClass
|
static IRI |
SHACL.TARGET_NODE
sh:targetNode
|
static IRI |
SHACL.TARGET_OBJECTS_OF
sh:targetObjectsOf
|
static IRI |
SHACL.TARGET_PROP
sh:target
|
static IRI |
SHACL.TARGET_SUBJECTS_OF
sh:targetSubjectsOf
|
static IRI |
SHACL.TARGET_TYPE
sh:TargetType
|
static IRI |
OWL.TARGETINDIVIDUAL
http://www.w3.org/2002/07/owl#targetIndividual
|
static IRI |
OWL.TARGETVALUE
http://www.w3.org/2002/07/owl#targetValue
|
static IRI |
VOID.TECHNICAL_FEATURE
void:TechnicalFeature
|
static IRI |
VCARD4.TEL
Deprecated.
|
static IRI |
VCARD4.TEL_PROP
vcard:tel
|
static IRI |
VCARD4.TELEPHONE_TYPE
vcard:TelephoneType
|
static IRI |
SPIN.TEMPLATE_CLASS
http://spinrdf.org/spin#Template The metaclass of SPIN templates.
|
static IRI |
SPIN.TEMPLATES_CLASS
http://spinrdf.org/spin#Templates Suggested abstract base class for all Templates.
|
static IRI |
SP.TEMPLATES_PROPERTY
http://spinrdf.org/sp#templates Points to a list of TripleTemplates that form the head of a Construct query.
|
static IRI |
DCTERMS.TEMPORAL
http://purl.org/dc/terms/temporal
|
static IRI |
VANN.TERM_GROUP
A group of related terms in a vocabulary.
|
static IRI |
EARL.TEST |
static IRI |
EARL.TEST_SUBJECT |
static IRI |
EARL.TESTRESULT |
static IRI |
VCARD4.TEXT
vcard:Text
|
static IRI |
VCARD4.TEXT_PHONE
vcard:TextPhone
|
static IRI |
SP.TEXT_PROPERTY
http://spinrdf.org/sp#text Can be attached to sp:Queries to store a textual representation of the query.
|
static IRI |
DCTERMS.TGN
http://purl.org/dc/terms/TGN
|
static IRI |
FOAF.THEME |
static IRI |
DCAT.THEME
dcat:theme
|
static IRI |
DCAT.THEME_TAXONOMY
dcat:themeTaxonomy
|
static IRI |
OWL.THING
http://www.w3.org/2002/07/owl#Thing
|
static IRI |
SPIN.THIS_CONTEXT_INSTANCE
http://spinrdf.org/spin#_this A system variable representing the current context instance in a rule or
constraint.
|
static IRI |
SPIN.THIS_UNBOUND_PROPERTY
http://spinrdf.org/spin#thisUnbound Can be set to true for SPIN rules and constraints that do not require
pre-binding the variable ?this with all members of the associated class.
|
static IRI |
LOCN.THOROUGHFARE
locn:thoroughfare
|
static IRI |
FOAF.THUMBNAIL |
static IRI |
XMLSchema.TIME
http://www.w3.org/2001/XMLSchema#time
|
static IRI |
SPIF.TIME_MILLIS_FUNCTION |
static IRI |
FN.TIMEZONE_FROM_DATETIME
fn:timezone-from-dateTime
|
static IRI |
FOAF.TIPJAR |
static IRI |
VCARD4.TITLE
vcard:title
|
static IRI |
FOAF.TITLE |
static IRI |
DCTERMS.TITLE
http://purl.org/dc/terms/title
|
static IRI |
DC.TITLE
dc:title
|
static IRI |
SPIF.TITLE_CASE_FUNCTION |
static IRI |
XMLSchema.TOKEN
http://www.w3.org/2001/XMLSchema#token
|
static IRI |
SKOS.TOP_CONCEPT_OF
The skos:topConceptOf relation.
|
static IRI |
OWL.TOPDATAPROPERTY
http://www.w3.org/2002/07/owl#topDataProperty
|
static IRI |
FOAF.TOPIC |
static IRI |
FOAF.TOPIC_INTEREST |
static IRI |
OWL.TOPOBJECTPROPERTY
http://www.w3.org/2002/07/owl#topObjectProperty
|
static IRI |
ORG.TRANSITIVE_SUB_ORGANIZATION_OF
void:transitiveSubOrganizationOf
|
static IRI |
OWL.TRANSITIVEPROPERTY
http://www.w3.org/2002/07/owl#TransitiveProperty
|
static IRI |
SPIF.TRIM_FUNCTION |
static IRI |
SP.TRIPLE_CLASS
http://spinrdf.org/sp#Triple A base class for TriplePattern and TripleTemplate.
|
static IRI |
SP.TRIPLE_PATH_CLASS
http://spinrdf.org/sp#TriplePath Similar to a TriplePattern, but with a path expression as its predicate.
|
static IRI |
SP.TRIPLE_PATTERN_CLASS
http://spinrdf.org/sp#TriplePattern A triple pattern used in the body of a query.
|
static IRI |
SP.TRIPLE_TEMPLATE_CLASS
http://spinrdf.org/sp#TripleTemplate A prototypical triple used as template in the head of a Construct query.
|
static IRI |
VOID.TRIPLES
void:triples
|
static IRI |
SP.TUPLE_CLASS
http://spinrdf.org/sp#Tuple Abstract base class for things that have subject and object.
|
static IRI |
VCARD4.TYPE
vcard:Type
|
static IRI |
RDF.TYPE
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
|
static IRI |
DCTERMS.TYPE
http://purl.org/dc/terms/type
|
static IRI |
DC.TYPE
dc:type
|
static IRI |
VCARD4.TZ
vcard:tz
|
static IRI |
DCTERMS.UDC
http://purl.org/dc/terms/UDC
|
static IRI |
SPIF.UN_CAMEL_CASE_FUNCTION |
static IRI |
SP.UNDEF |
static IRI |
GEOF.UNION |
static IRI |
SP.UNION_CLASS
http://spinrdf.org/sp#Union A UNION group.
|
static IRI |
SD.UNION_DEFAULT_GRAPH
Union Default Graph
|
static IRI |
OWL.UNIONOF
http://www.w3.org/2002/07/owl#unionOf
|
static IRI |
SHACL.UNIQUE_LANG
sh:uniqueLang
|
static IRI |
SHACL.UNIQUE_LANG_CONSTRAINT_COMPONENT
sh:UniqueLangConstraintComponent
|
static IRI |
SHACL.UNIQUE_LANG_CONSTRAINT_COMPONENT_UNIQUE_LANG
sh:UniqueLangConstraintComponent-uniqueLang
|
static IRI |
ORG.UNIT_OF
void:unitOf
|
static IRI |
VCARD4.UNKNOWN
vcard:Unknown
|
static IRI |
XMLSchema.UNSIGNED_BYTE
http://www.w3.org/2001/XMLSchema#unsignedByte
|
static IRI |
XMLSchema.UNSIGNED_INT
http://www.w3.org/2001/XMLSchema#unsignedInt
|
static IRI |
XMLSchema.UNSIGNED_LONG
http://www.w3.org/2001/XMLSchema#unsignedLong
|
static IRI |
XMLSchema.UNSIGNED_SHORT
http://www.w3.org/2001/XMLSchema#unsignedShort
|
static IRI |
GEOF.UOM_DEGREE |
static IRI |
GEOF.UOM_METRE |
static IRI |
GEOF.UOM_RADIAN |
static IRI |
GEOF.UOM_UNITY |
static IRI |
SHACL.UPDATE
sh:update
|
static IRI |
SP.UPDATE_CLASS
http://spinrdf.org/sp#Update Abstract base class to group the various SPARQL UPDATE commands.
|
static IRI |
SPIN.UPDATE_PROPERTY
http://spinrdf.org/spin#update Can be used to point from any resource to an Update.
|
static IRI |
SPIN.UPDATE_TEMPLATE_CLASS
http://spinrdf.org/spin#UpdateTemplate A SPIN template that has an UPDATE command as its body.
|
static IRI |
SPIN.UPDATE_TEMPLATES_CLASS
http://spinrdf.org/spin#UpdateTemplates Suggested abstract base class for all UpdateTemplates.
|
static IRI |
FN.UPPER_CASE
fn:upper-case
|
static IRI |
SPIF.UPPER_CASE_FUNCTION |
static IRI |
SP.URI |
static IRI |
DCTERMS.URI
http://purl.org/dc/terms/URI
|
static IRI |
VOID.URI_LOOKUP_ENDPOINT
void:uriLookupEndpoint
|
static IRI |
VOID.URI_REGEX_PATTERN
void:uriRegexPattern
|
static IRI |
VOID.URI_SPACE
void:uriSpace
|
static IRI |
VCARD4.URL
vcard:url
|
static IRI |
VANN.USAGE_NOTE
A reference to a resource that provides information on how this resource is to be used.
|
static IRI |
SP.USING_NAMED_PROPERTY |
static IRI |
SP.USING_PROPERTY |
static IRI |
DCTERMS.VALID
http://purl.org/dc/terms/valid
|
static IRI |
SHACL.VALIDATION_REPORT
sh:ValidationReport
|
static IRI |
SHACL.VALIDATION_RESULT
sh:ValidationResult
|
static IRI |
SHACL.VALIDATOR
sh:Validator
|
static IRI |
SHACL.VALIDATOR_PROP
sh:validator
|
static IRI |
VCARD4.VALUE
vcard:value
|
static IRI |
SHACL.VALUE
sh:value
|
static IRI |
RDF.VALUE
http://www.w3.org/1999/02/22-rdf-syntax-ns#value
|
static IRI |
SPL.VALUE_TYPE_PROPERTY
http://spinrdf.org/spl#valueType
|
static IRI |
SP.VALUES_CLASS |
static IRI |
SHACL.VALUES_DERIVER
sh:ValuesDeriver
|
static IRI |
SP.VAR_NAME_PROPERTY
http://spinrdf.org/sp#varName The name of a Variable.
|
static IRI |
SP.VAR_NAMES_PROPERTY |
static IRI |
SP.VARIABLE_CLASS
http://spinrdf.org/sp#Variable A variable mentioned in a Triple or expression.
|
static IRI |
SP.VARIABLE_PROPERTY
http://spinrdf.org/sp#variable The variable of a Bind element.
|
static IRI |
VCARD4.VCARD
vcard:VCard
|
static IRI |
DOAP.VERSION |
static IRI |
OWL.VERSIONINFO
http://www.w3.org/2002/07/owl#versionInfo
|
static IRI |
OWL.VERSIONIRI
http://www.w3.org/2002/07/owl#versionIRI
|
static IRI |
VCARD4.VIDEO
vcard:Video
|
static IRI |
SHACL.VIOLATION
sh:Violation
|
static IRI |
SPIN.VIOLATION_LEVEL_PROPERTY |
static IRI |
SPIN.VIOLATION_PATH_PROPERTY
http://spinrdf.org/spin#violationPath An optional attribute of ConstraintViolations to provide a path expression
from the root resource to the value that is invalid.
|
static IRI |
SPIN.VIOLATION_ROOT_PROPERTY
http://spinrdf.org/spin#violationRoot The root resource of the violation (often ?this in the constraint body).
|
static IRI |
SPIN.VIOLATION_SOURCE_PROPERTY
http://spinrdf.org/spin#violationSource Can be used to link a spin:ConstraintViolation with the query or template
call that caused it.
|
static IRI |
SPIN.VIOLATION_VALUE_PROPERTY |
static IRI |
VOID.VOCABULARY
void:vocabulary
|
static IRI |
VCARD4.VOICE
vcard:Voice
|
static IRI |
DCTERMS.W3CDTF
http://purl.org/dc/terms/W3CDTF
|
static IRI |
SHACL.WARNING
sh:Warning
|
static IRI |
SPIN.WARNING_VIOLATION_LEVEL |
static IRI |
FOAF.WEBLOG |
static IRI |
SP.WHERE_PROPERTY
http://spinrdf.org/sp#where The WHERE clause of a Query.
|
static IRI |
SESAME.WILDCARD
http://www.openrdf.org/schema/sesame#wildcard
|
static IRI |
SP.WITH_PROPERTY |
static IRI |
OWL.WITHRESTRICTIONS
http://www.w3.org/2002/07/owl#withRestrictions
|
static IRI |
GEO.WKT_LITERAL |
static IRI |
VCARD4.WORK
vcard:Work
|
static IRI |
FOAF.WORK_INFO_HOMEPAGE |
static IRI |
FOAF.WORKPLACE_HOMEPAGE |
static IRI |
VCARD4.X400
Deprecated.
|
static IRI |
RDF.XMLLITERAL
http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
|
static IRI |
SHACL.XONE
sh:xone
|
static IRI |
SHACL.XONE_CONSTRAINT_COMPONENT
sh:XoneConstraintComponent
|
static IRI |
SHACL.XONE_CONSTRAINT_COMPONENT_XONE
sh:XoneConstraintComponent-xone
|
static IRI |
FOAF.YAHOO_CHAT_ID |
static IRI |
FN.YEAR_FROM_DATETIME
fn:year-from-dateTime
|
static IRI |
XMLSchema.YEARMONTHDURATION
http://www.w3.org/2001/XMLSchema#yearMonthDuration
|
static IRI |
SHACL.ZERO_OR_MORE_PATH
sh:zeroOrMorePath
|
static IRI |
SHACL.ZERO_OR_ONE_PATH
sh:zeroOrOnePath
|
Modifier and Type | Method and Description |
---|---|
IRI |
Dataset.getDefaultInsertGraph()
Gets the default insert graph URI of this dataset.
|
Modifier and Type | Method and Description |
---|---|
Set<IRI> |
Dataset.getDefaultGraphs()
Gets the default graph URIs of this dataset.
|
Set<IRI> |
Dataset.getDefaultRemoveGraphs()
Gets the default remove graph URIs of this dataset.
|
Set<IRI> |
Dataset.getNamedGraphs()
Gets the named graph URIs of this dataset.
|
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Statement,QueryEvaluationException> |
TripleSource.getStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.
|
Modifier and Type | Method and Description |
---|---|
IRI |
UUID.evaluate(ValueFactory valueFactory,
Value... args) |
Modifier and Type | Method and Description |
---|---|
protected IRI |
UnsignedShortCast.getXsdDatatype() |
protected IRI |
UnsignedLongCast.getXsdDatatype() |
protected IRI |
UnsignedIntCast.getXsdDatatype() |
protected IRI |
UnsignedByteCast.getXsdDatatype() |
protected IRI |
StringCast.getXsdDatatype() |
protected IRI |
ShortCast.getXsdDatatype() |
protected IRI |
PositiveIntegerCast.getXsdDatatype() |
protected IRI |
NonPositiveIntegerCast.getXsdDatatype() |
protected IRI |
NonNegativeIntegerCast.getXsdDatatype() |
protected IRI |
NegativeIntegerCast.getXsdDatatype() |
protected IRI |
LongCast.getXsdDatatype() |
protected IRI |
IntegerCast.getXsdDatatype() |
protected IRI |
IntCast.getXsdDatatype() |
protected IRI |
FloatCast.getXsdDatatype() |
protected IRI |
DoubleCast.getXsdDatatype() |
protected IRI |
DecimalCast.getXsdDatatype() |
protected IRI |
DateTimeCast.getXsdDatatype() |
protected abstract IRI |
CastFunction.getXsdDatatype()
Get the specific XML Schema datatype which this function returns.
|
protected IRI |
ByteCast.getXsdDatatype() |
protected IRI |
BooleanCast.getXsdDatatype() |
Modifier and Type | Method and Description |
---|---|
IRI |
StrictEvaluationStrategy.evaluate(IRIFunction node,
BindingSet bindings)
Creates a URI from the operand value (a plain literal or a URI).
|
Modifier and Type | Method and Description |
---|---|
static CloseableIteration<? extends IRI,QueryEvaluationException> |
TripleSources.getObjectURIs(Resource subject,
IRI predicate,
TripleSource store) |
static CloseableIteration<? extends IRI,QueryEvaluationException> |
TripleSources.getSubjectURIs(IRI predicate,
Value object,
TripleSource store) |
Modifier and Type | Method and Description |
---|---|
static boolean |
TripleSources.booleanValue(Resource subj,
IRI pred,
TripleSource store) |
static CloseableIteration<? extends Literal,QueryEvaluationException> |
TripleSources.getObjectLiterals(Resource subject,
IRI predicate,
TripleSource store) |
static CloseableIteration<? extends Resource,QueryEvaluationException> |
TripleSources.getObjectResources(Resource subject,
IRI predicate,
TripleSource store) |
static CloseableIteration<? extends IRI,QueryEvaluationException> |
TripleSources.getObjectURIs(Resource subject,
IRI predicate,
TripleSource store) |
static CloseableIteration<? extends IRI,QueryEvaluationException> |
TripleSources.getSubjectURIs(IRI predicate,
Value object,
TripleSource store) |
static Statement |
TripleSources.single(Resource subj,
IRI pred,
Value obj,
TripleSource store)
Returns the single statement with the given subject, predicate and object or null if none exists.
|
static Value |
TripleSources.singleValue(Resource subj,
IRI pred,
TripleSource store) |
Modifier and Type | Field and Description |
---|---|
static IRI |
DAWGTestResultSetSchema.BINDING |
static IRI |
DAWGTestResultSetSchema.BOOLEAN |
static IRI |
DAWGTestResultSetSchema.RESULTSET |
static IRI |
DAWGTestResultSetSchema.RESULTVARIABLE |
static IRI |
DAWGTestResultSetSchema.SOLUTION |
static IRI |
DAWGTestResultSetSchema.VALUE |
static IRI |
DAWGTestResultSetSchema.VARIABLE |
Modifier and Type | Method and Description |
---|---|
IRI |
SimpleDataset.getDefaultInsertGraph() |
IRI |
FallbackDataset.getDefaultInsertGraph() |
Modifier and Type | Method and Description |
---|---|
Set<IRI> |
SimpleDataset.getDefaultGraphs() |
Set<IRI> |
FallbackDataset.getDefaultGraphs() |
Set<IRI> |
SimpleDataset.getDefaultRemoveGraphs() |
Set<IRI> |
FallbackDataset.getDefaultRemoveGraphs() |
Set<IRI> |
SimpleDataset.getNamedGraphs()
Gets the (unmodifiable) set of named graph URIs.
|
Set<IRI> |
FallbackDataset.getNamedGraphs() |
Modifier and Type | Method and Description |
---|---|
void |
SimpleDataset.addDefaultGraph(IRI graphURI)
Adds a graph URI to the set of default graph URIs.
|
void |
SimpleDataset.addDefaultRemoveGraph(IRI graphURI)
Adds a graph URI to the set of default remove graph URIs.
|
void |
SimpleDataset.addNamedGraph(IRI graphURI)
Adds a graph URI to the set of named graph URIs.
|
boolean |
SimpleDataset.removeDefaultGraph(IRI graphURI)
Removes a graph URI from the set of default graph URIs.
|
boolean |
SimpleDataset.removeDefaultRemoveGraph(IRI graphURI)
Removes a graph URI from the set of default remove graph URIs.
|
boolean |
SimpleDataset.removeNamedGraph(IRI graphURI)
Removes a graph URI from the set of named graph URIs.
|
void |
SimpleDataset.setDefaultInsertGraph(IRI defaultInsertGraph) |
Modifier and Type | Method and Description |
---|---|
IRI |
ASTNumericLiteral.getDatatype() |
Modifier and Type | Method and Description |
---|---|
void |
ASTNumericLiteral.setDatatype(IRI datatype) |
Modifier and Type | Field and Description |
---|---|
protected static IRI |
QueryResultFormat.SPARQL_RESULTS_CSV_URI
Local constant for tuple formats for SPARQL Results CSV.
|
protected static IRI |
QueryResultFormat.SPARQL_RESULTS_JSON_URI
Local constant reused across boolean and tuple formats for SPARQL Results JSON.
|
protected static IRI |
QueryResultFormat.SPARQL_RESULTS_TSV_URI
Local constant for tuple formats for SPARQL Results TSV.
|
protected static IRI |
QueryResultFormat.SPARQL_RESULTS_XML_URI
Local constant reused across boolean and tuple formats for SPARQL Results XML.
|
Modifier and Type | Method and Description |
---|---|
IRI |
QueryResultFormat.getStandardURI() |
Constructor and Description |
---|
BooleanQueryResultFormat(String name,
Collection<String> mimeTypes,
Charset charset,
Collection<String> fileExtensions,
IRI standardURI)
Creates a new BooleanQueryResultFormat object.
|
QueryResultFormat(String name,
Collection<String> mimeTypes,
Charset charset,
Collection<String> fileExtensions,
IRI standardURI) |
TupleQueryResultFormat(String name,
Collection<String> mimeTypes,
Charset charset,
Collection<String> fileExtensions,
IRI standardURI)
Creates a new TupleQueryResultFormat object.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SPARQLResultsCSVWriter.writeURI(IRI uri) |
Modifier and Type | Method and Description |
---|---|
protected void |
SPARQLResultsTSVWriter.writeURI(IRI uri) |
Modifier and Type | Method and Description |
---|---|
QueryBuilder<T> |
QueryBuilder.addProjectionStatement(IRI theSubj,
IRI thePred,
String theObj)
Deprecated.
|
QueryBuilder<T> |
AbstractQueryBuilder.addProjectionStatement(IRI theSubj,
IRI thePred,
String theObj)
Deprecated.
|
QueryBuilder<T> |
QueryBuilder.addProjectionStatement(IRI theSubj,
String thePred,
String theObj)
Deprecated.
|
QueryBuilder<T> |
AbstractQueryBuilder.addProjectionStatement(IRI theSubj,
String thePred,
String theObj)
Deprecated.
|
QueryBuilder<T> |
QueryBuilder.addProjectionStatement(String theSubj,
IRI thePred,
String theObj)
Deprecated.
|
QueryBuilder<T> |
AbstractQueryBuilder.addProjectionStatement(String theSubj,
IRI thePred,
String theObj)
Deprecated.
|
QueryBuilder<T> |
QueryBuilder.addProjectionStatement(String theSubj,
IRI thePred,
Value theObj)
Deprecated.
|
QueryBuilder<T> |
AbstractQueryBuilder.addProjectionStatement(String theSubj,
IRI thePred,
Value theObj)
Deprecated.
|
QueryBuilder<T> |
QueryBuilder.from(IRI theURI)
Deprecated.
Add a from clause to this query
|
QueryBuilder<T> |
AbstractQueryBuilder.from(IRI theURI)
Deprecated.
|
QueryBuilder<T> |
QueryBuilder.fromNamed(IRI theURI)
Deprecated.
Add a 'from named' clause to this query
|
QueryBuilder<T> |
AbstractQueryBuilder.fromNamed(IRI theURI)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnection.add(Resource subject,
IRI predicate,
Value object,
Resource... contexts)
Adds a statement with the specified subject, predicate and object to this repository, optionally to one or more
named contexts.
|
void |
RepositoryConnection.exportStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the
specified contexts.
|
RepositoryResult<Statement> |
RepositoryConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.
|
default RepositoryResult<Statement> |
RepositoryConnection.getStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.
|
boolean |
RepositoryConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in
the specified contexts.
|
void |
RepositoryConnection.remove(Resource subject,
IRI predicate,
Value object,
Resource... contexts)
Removes the statement(s) with the specified subject, predicate and object from the repository, optionally
restricted to the specified contexts.
|
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionWrapper.add(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
AbstractRepositoryConnection.add(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionWrapper.addWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
protected abstract void |
AbstractRepositoryConnection.addWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionWrapper.exportStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
RepositoryResult<Statement> |
RepositoryConnectionWrapper.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionWrapper.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
AbstractRepositoryConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
RepositoryConnectionWrapper.remove(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
AbstractRepositoryConnection.remove(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
protected abstract void |
AbstractRepositoryConnection.removeWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
RepositoryConfigSchema.DELEGATE
http://www.openrdf.org/config/repository#delegate
|
static IRI |
RepositoryConfigSchema.REPOSITORY
http://www.openrdf.org/config/repository#Repository
|
static IRI |
RepositoryConfigSchema.REPOSITORY_CONTEXT
http://www.openrdf.org/config/repository#RepositoryContext
|
static IRI |
RepositoryConfigSchema.REPOSITORYID
http://www.openrdf.org/config/repository#repositoryID
|
static IRI |
RepositoryConfigSchema.REPOSITORYIMPL
http://www.openrdf.org/config/repository#repositoryImpl
|
static IRI |
RepositoryConfigSchema.REPOSITORYTYPE
http://www.openrdf.org/config/repository#repositoryType
|
Modifier and Type | Method and Description |
---|---|
IRI[] |
ContextAwareRepository.getAddContexts()
Deprecated.
|
IRI[] |
ContextAwareConnection.getAddContexts()
Deprecated.
|
IRI[] |
ContextAwareRepository.getArchiveContexts()
Deprecated.
|
IRI[] |
ContextAwareConnection.getArchiveContexts()
Deprecated.
|
IRI |
ContextAwareRepository.getInsertContext() |
IRI |
ContextAwareConnection.getInsertContext()
The default context to add the statements to.
|
IRI[] |
ContextAwareRepository.getReadContexts() |
IRI[] |
ContextAwareConnection.getReadContexts()
The default context(s) to get the data from.
|
IRI[] |
ContextAwareRepository.getRemoveContexts() |
IRI[] |
ContextAwareConnection.getRemoveContexts()
The context(s) to remove the data from.
|
Modifier and Type | Method and Description |
---|---|
void |
ContextAwareConnection.add(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
IRI pred,
Value obj,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the
specified contexts.
|
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.
|
boolean |
ContextAwareConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
ContextAwareConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in
the specified contexts.
|
void |
ContextAwareConnection.remove(Resource subject,
IRI predicate,
Value object,
Resource... contexts)
Removes the statement with the specified subject, predicate and object from the repository, optionally restricted
to the specified contexts.
|
protected void |
ContextAwareConnection.removeWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
ContextAwareRepository.setAddContexts(IRI... addContexts)
Deprecated.
|
void |
ContextAwareConnection.setAddContexts(IRI... addContexts)
Deprecated.
|
void |
ContextAwareRepository.setArchiveContexts(IRI... archiveContexts)
Deprecated.
|
void |
ContextAwareConnection.setArchiveContexts(IRI... archiveContexts)
Deprecated.
|
void |
ContextAwareRepository.setInsertContext(IRI insertContext) |
void |
ContextAwareConnection.setInsertContext(IRI insertContext)
The default context to add the statements to.
|
void |
ContextAwareRepository.setReadContexts(IRI... readContexts) |
void |
ContextAwareConnection.setReadContexts(IRI... readContexts)
The default context(s) to get the data from.
|
void |
ContextAwareRepository.setRemoveContexts(IRI... removeContexts) |
void |
ContextAwareConnection.setRemoveContexts(IRI... removeContexts)
The context(s) to remove the data from.
|
Modifier and Type | Field and Description |
---|---|
static IRI |
ContextAwareSchema.ADD_CONTEXT
Deprecated.
|
static IRI |
ContextAwareSchema.ARCHIVE_CONTEXT
Deprecated.
|
static IRI |
ContextAwareSchema.BASE_URI
http://www.openrdf.org/config/repository/contextaware#base
|
static IRI |
ContextAwareSchema.INCLUDE_INFERRED
http://www.openrdf.org/config/repository/contextaware#includeInferred
|
static IRI |
ContextAwareSchema.INSERT_CONTEXT
http://www.openrdf.org/config/repository/contextaware#insertContext
|
static IRI |
ContextAwareSchema.MAX_QUERY_TIME
http://www.openrdf.org/config/repository/contextaware#maxQueryTime
|
static IRI |
ContextAwareSchema.QUERY_LANGUAGE
http://www.openrdf.org/config/repository/contextaware#queryLanguage
|
static IRI |
ContextAwareSchema.READ_CONTEXT
http://www.openrdf.org/config/repository/contextaware#readContext
|
static IRI |
ContextAwareSchema.REMOVE_CONTEXT
http://www.openrdf.org/config/repository/contextaware#removeContext
|
Modifier and Type | Method and Description |
---|---|
IRI[] |
ContextAwareConfig.getAddContexts()
Deprecated.
|
IRI[] |
ContextAwareConfig.getArchiveContexts()
Deprecated.
|
IRI |
ContextAwareConfig.getInsertContext() |
IRI[] |
ContextAwareConfig.getReadContexts() |
IRI[] |
ContextAwareConfig.getRemoveContexts() |
Modifier and Type | Method and Description |
---|---|
void |
ContextAwareConfig.setAddContexts(IRI... addContexts)
Deprecated.
|
void |
ContextAwareConfig.setArchiveContexts(IRI... archiveContexts)
Deprecated.
|
void |
ContextAwareConfig.setInsertContext(IRI insertContext) |
void |
ContextAwareConfig.setReadContexts(IRI... readContexts) |
void |
ContextAwareConfig.setRemoveContexts(IRI... removeContexts) |
Modifier and Type | Method and Description |
---|---|
void |
DatasetRepository.loadDataset(URL url,
IRI context,
ParserConfig config)
Inspects if the dataset at the supplied URL location has been modified since the last load into this repository
and if so loads it into the supplied context.
|
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Statement,QueryEvaluationException> |
RepositoryTripleSource.getStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.add(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.remove(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionListenerAdapter.add(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.add(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
NotifyingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
InterceptingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListenerAdapter.remove(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.remove(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
NotifyingRepositoryConnectionWrapper.removeWithoutCommit(Resource subj,
IRI pred,
Value obj,
Resource... ctx) |
void |
InterceptingRepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
DebugRepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
DebugRepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
boolean |
RepositoryBloomFilter.mayHaveStatement(RepositoryConnection conn,
Resource subj,
IRI pred,
Value obj,
Resource... ctxs)
Returns true if the repository may have such a statement or false if it definitely does not.
|
boolean |
InaccurateRepositoryBloomFilter.mayHaveStatement(RepositoryConnection conn,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
AccurateRepositoryBloomFilter.mayHaveStatement(RepositoryConnection conn,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
HTTPRepositorySchema.PASSWORD
http://www.openrdf.org/config/repository/http#password
|
static IRI |
HTTPRepositorySchema.REPOSITORYURL
http://www.openrdf.org/config/repository/http#repositoryURL
|
static IRI |
HTTPRepositorySchema.USERNAME
http://www.openrdf.org/config/repository/http#username
|
Modifier and Type | Field and Description |
---|---|
static IRI |
RepositoryManager.PROXIED_ID
http://www.openrdf.org/config/repository/proxy#proxiedID
|
Modifier and Type | Method and Description |
---|---|
protected void |
SailRepositoryConnection.addWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
SailRepositoryConnection.exportStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
RepositoryResult<Statement> |
SailRepositoryConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
SailRepositoryConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected void |
SailRepositoryConnection.removeWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
ProxyRepositorySchema.PROXIED_ID
http://www.openrdf.org/config/repository/proxy#proxiedID
|
static IRI |
SailRepositorySchema.SAILIMPL
http://www.openrdf.org/config/repository/sail#sailImpl
|
Modifier and Type | Method and Description |
---|---|
protected void |
RDFSailInserter.addStatement(Resource subj,
IRI pred,
Value obj,
Resource ctxt) |
Modifier and Type | Method and Description |
---|---|
protected void |
SPARQLConnection.addWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
SPARQLConnection.exportStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
RepositoryResult<Statement> |
SPARQLConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
SPARQLConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected void |
SPARQLConnection.removeWithoutCommit(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
protected Iteration<Statement,QueryEvaluationException> |
SPARQLConnection.toStatementIteration(TupleQueryResult iter,
Resource subj,
IRI pred,
Value obj)
Converts a
TupleQueryResult resulting from the SPARQLConnection.EVERYTHING_WITH_GRAPH to a statement by using the
respective values from the BindingSet or (if provided) the ones from the arguments. |
Modifier and Type | Field and Description |
---|---|
static IRI |
SPARQLRepositoryConfig.QUERY_ENDPOINT |
static IRI |
SPARQLRepositoryConfig.UPDATE_ENDPOINT |
Modifier and Type | Method and Description |
---|---|
protected void |
RDFInserter.addStatement(Resource subj,
IRI pred,
Value obj,
Resource ctxt) |
protected abstract void |
AbstractRDFInserter.addStatement(Resource subj,
IRI pred,
Value obj,
Resource ctxt) |
static Optional<Statement> |
Connections.getStatement(RepositoryConnection conn,
Resource subject,
IRI predicate,
Value object,
Resource... contexts)
Retrieve a single
Statement matching with the supplied subject, predicate, object and context(s) from the
given RepositoryConnection . |
Modifier and Type | Method and Description |
---|---|
IRI |
RDFFormat.getStandardURI() |
Modifier and Type | Method and Description |
---|---|
boolean |
DatatypeHandler.isRecognizedDatatype(IRI datatypeUri)
Checks if the given datatype URI is recognized by this datatype handler.
|
Literal |
DatatypeHandler.normalizeDatatype(String literalValue,
IRI datatypeUri,
ValueFactory valueFactory)
Normalize both the datatype URI and the literal value if appropriate, and use the given value factory to generate
a literal matching a literal value and datatype URI.
|
boolean |
DatatypeHandler.verifyDatatype(String literalValue,
IRI datatypeUri)
Verifies that the datatype URI is valid, including a check on the structure of the literal value.
|
Constructor and Description |
---|
RDFFormat(String name,
Collection<String> mimeTypes,
Charset charset,
Collection<String> fileExtensions,
IRI standardURI,
boolean supportsNamespaces,
boolean supportsContexts)
Creates a new RDFFormat object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
XMLSchemaDatatypeHandler.isRecognizedDatatype(IRI datatypeUri) |
boolean |
VirtuosoGeometryDatatypeHandler.isRecognizedDatatype(IRI datatypeUri) |
boolean |
RDFDatatypeHandler.isRecognizedDatatype(IRI datatypeUri) |
boolean |
GeoSPARQLDatatypeHandler.isRecognizedDatatype(IRI datatypeUri) |
boolean |
DBPediaDatatypeHandler.isRecognizedDatatype(IRI datatypeUri) |
Literal |
XMLSchemaDatatypeHandler.normalizeDatatype(String literalValue,
IRI datatypeUri,
ValueFactory valueFactory) |
Literal |
VirtuosoGeometryDatatypeHandler.normalizeDatatype(String literalValue,
IRI datatypeUri,
ValueFactory valueFactory) |
Literal |
RDFDatatypeHandler.normalizeDatatype(String literalValue,
IRI datatypeUri,
ValueFactory valueFactory) |
Literal |
GeoSPARQLDatatypeHandler.normalizeDatatype(String literalValue,
IRI datatypeUri,
ValueFactory valueFactory) |
Literal |
DBPediaDatatypeHandler.normalizeDatatype(String literalValue,
IRI datatypeUri,
ValueFactory valueFactory) |
boolean |
XMLSchemaDatatypeHandler.verifyDatatype(String literalValue,
IRI datatypeUri) |
boolean |
VirtuosoGeometryDatatypeHandler.verifyDatatype(String literalValue,
IRI datatypeUri) |
boolean |
RDFDatatypeHandler.verifyDatatype(String literalValue,
IRI datatypeUri) |
boolean |
GeoSPARQLDatatypeHandler.verifyDatatype(String literalValue,
IRI datatypeUri) |
boolean |
DBPediaDatatypeHandler.verifyDatatype(String literalValue,
IRI datatypeUri) |
Modifier and Type | Method and Description |
---|---|
protected IRI |
AbstractRDFParser.createURI(String uri)
Creates a
IRI object for the specified URI-string. |
protected IRI |
AbstractRDFParser.resolveURI(String uriSpec)
Resolves a URI-string against the base URI and creates a
IRI object for it. |
Modifier and Type | Method and Description |
---|---|
protected Literal |
AbstractRDFParser.createLiteral(String label,
String lang,
IRI datatype)
Creates a
Literal object with the supplied parameters. |
protected Literal |
AbstractRDFParser.createLiteral(String label,
String lang,
IRI datatype,
long lineNo,
long columnNo)
Creates a
Literal object with the supplied parameters, using the lineNo and columnNo to enhance error
messages or exceptions that may be generated during the creation of the literal. |
static Literal |
RDFParserHelper.createLiteral(String label,
String lang,
IRI datatype,
ParserConfig parserConfig,
ParseErrorListener errListener,
ValueFactory valueFactory)
Create a literal using the given parameters, including iterative verification and normalization by any
DatatypeHandler or LanguageHandler implementations that are found in the ParserConfig . |
static Literal |
RDFParserHelper.createLiteral(String label,
String lang,
IRI datatype,
ParserConfig parserConfig,
ParseErrorListener errListener,
ValueFactory valueFactory,
long lineNo,
long columnNo)
Create a literal using the given parameters, including iterative verification and normalization by any
DatatypeHandler or LanguageHandler implementations that are found in the ParserConfig . |
protected Statement |
AbstractRDFParser.createStatement(Resource subj,
IRI pred,
Value obj)
Creates a new
Statement object with the supplied components. |
protected Statement |
AbstractRDFParser.createStatement(Resource subj,
IRI pred,
Value obj,
Resource context)
Creates a new
Statement object with the supplied components. |
Modifier and Type | Field and Description |
---|---|
protected IRI |
NTriplesParser.predicate |
Modifier and Type | Method and Description |
---|---|
protected IRI |
NTriplesParser.createURI(String uri) |
static IRI |
NTriplesUtil.parseURI(String nTriplesURI,
ValueFactory valueFactory)
Parses an N-Triples URI, creates an object for it using the supplied ValueFactory and returns this object.
|
Modifier and Type | Method and Description |
---|---|
static void |
NTriplesUtil.append(IRI uri,
Appendable appendable) |
static String |
NTriplesUtil.toNTriplesString(IRI uri)
Creates an N-Triples string for the supplied URI.
|
Modifier and Type | Method and Description |
---|---|
protected Literal |
RDFJSONParser.createLiteral(String label,
String language,
IRI datatype,
com.fasterxml.jackson.core.JsonLocation currentLocation)
Creates a literal, using the current value, language, and datatype, and additionally using the given
JsonLocation to provide information about the line and column numbers in the event of a warning, error or
exception being generated by the creation of the literal. |
Modifier and Type | Method and Description |
---|---|
protected Literal |
RDFXMLParser.createLiteral(String label,
String lang,
IRI datatype) |
Modifier and Type | Method and Description |
---|---|
protected void |
TriGParser.reportStatement(Resource subj,
IRI pred,
Value obj) |
Modifier and Type | Method and Description |
---|---|
protected Literal |
TriXParser.createLiteral(String label,
String lang,
IRI datatype) |
Modifier and Type | Field and Description |
---|---|
protected IRI |
TurtleWriter.lastWrittenPredicate |
protected IRI |
TurtleParser.predicate |
Modifier and Type | Method and Description |
---|---|
protected IRI |
TurtleParser.parsePredicate() |
protected IRI |
TurtleParser.parseURI() |
Modifier and Type | Method and Description |
---|---|
protected void |
TurtleParser.reportStatement(Resource subj,
IRI pred,
Value obj) |
protected void |
TurtleWriter.writePredicate(IRI predicate) |
protected void |
TurtleWriter.writeURI(IRI uri) |
Modifier and Type | Method and Description |
---|---|
void |
SailConnection.addStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Adds a statement to the store.
|
void |
SailConnection.addStatement(UpdateContext op,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Adds a statement to the store.
|
CloseableIteration<? extends Statement,SailException> |
SailConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements from the specified contexts that have a specific subject, predicate and/or object.
|
default boolean |
SailConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Determines if the store contains any statements from the specified contexts that have a specific subject,
predicate and/or object.
|
void |
SailConnection.removeStatement(UpdateContext op,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and object from the repository.
|
void |
SailConnection.removeStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and object from the repository.
|
Modifier and Type | Method and Description |
---|---|
boolean |
SailSourceConnection.addInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
SailSourceConnection.addStatement(UpdateContext op,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
SailSink.approve(Resource subj,
IRI pred,
Value obj,
Resource ctx)
Adds a statement to the store.
|
void |
SailSink.deprecate(Resource subj,
IRI pred,
Value obj,
Resource ctx)
Removes a statement with the specified subject, predicate, object, and context.
|
CloseableIteration<? extends Statement,SailException> |
SailDataset.getStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.
|
protected CloseableIteration<? extends Statement,SailException> |
SailSourceConnection.getStatementsInternal(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
SailSink.observe(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Called to indicate matching statements have been observed and must not change their state until after this
SailSink is committed, iff this was opened in an isolation level compatible with
IsolationLevels.SERIALIZABLE . |
boolean |
SailSourceConnection.removeInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
SailSourceConnection.removeStatement(UpdateContext op,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
BaseSailSchema.EVALUATION_STRATEGY_FACTORY
http://www.openrdf.org/config/sail/base#evaluationStrategyFactory
|
Modifier and Type | Field and Description |
---|---|
static IRI |
SailConfigSchema.CONNECTION_TIME_OUT
http://www.openrdf.org/config/sail#connectionTimeOut
|
static IRI |
SailConfigSchema.DELEGATE
http://www.openrdf.org/config/sail#delegate
|
static IRI |
SailConfigSchema.ITERATION_CACHE_SYNC_THRESHOLD
http://www.openrdf.org/config/sail#iterationCacheSyncTreshold
|
static IRI |
SailConfigSchema.SAILTYPE
http://www.openrdf.org/config/sail#sailType
|
Modifier and Type | Method and Description |
---|---|
protected Iterable<? extends DocumentDistance> |
ElasticsearchIndex.geoQuery(IRI geoProperty,
org.locationtech.spatial4j.shape.Point p,
IRI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
ElasticsearchIndex.geoRelationQuery(String relation,
IRI geoProperty,
org.locationtech.spatial4j.shape.Shape shape,
Var contextVar) |
void |
ElasticsearchQuery.highlight(IRI property)
Deprecated.
Highlights the given field or all fields if null.
|
protected SearchQuery |
ElasticsearchIndex.parseQuery(String query,
IRI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
ElasticsearchIndex.query(Resource subject,
String query,
IRI propertyURI,
boolean highlight)
Parse the passed query.
|
Constructor and Description |
---|
ElasticsearchDocumentDistance(SearchHit hit,
com.google.common.base.Function<? super String,? extends org.locationtech.spatial4j.context.SpatialContext> geoContextMapper,
String geoPointField,
IRI units,
GeoPoint srcPoint,
DistanceUnit unit) |
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Statement,QueryEvaluationException> |
SailTripleSource.getStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
FederationConfig.DISTINCT
If no two members contain the same statement.
|
static IRI |
FederationConfig.LOCALPROPERTYSPACE
For all triples with a predicate in this space, the container RDF store contains all triples with that subject
and any predicate in this space.
|
static IRI |
FederationConfig.MEMBER |
static IRI |
FederationConfig.READ_ONLY
If the federation should not try and add statements to its members.
|
Modifier and Type | Method and Description |
---|---|
void |
SailConnectionWrapper.addStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
AbstractSailConnection.addStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionWrapper.addStatement(UpdateContext modify,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
AbstractSailConnection.addStatement(UpdateContext op,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
The default implementation buffers added statements until the update operation is complete.
|
protected abstract void |
AbstractSailConnection.addStatementInternal(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
CloseableIteration<? extends Statement,SailException> |
SailConnectionWrapper.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
CloseableIteration<? extends Statement,SailException> |
AbstractSailConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected abstract CloseableIteration<? extends Statement,SailException> |
AbstractSailConnection.getStatementsInternal(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
SailConnectionWrapper.removeStatement(UpdateContext modify,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
AbstractSailConnection.removeStatement(UpdateContext op,
Resource subj,
IRI pred,
Value obj,
Resource... contexts)
The default implementation buffers removed statements until the update operation is complete.
|
void |
SailConnectionWrapper.removeStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
AbstractSailConnection.removeStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected abstract void |
AbstractSailConnection.removeStatementsInternal(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
boolean |
InferencerConnectionWrapper.addInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
InferencerConnection.addInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Adds an inferred statement to a specific context.
|
CloseableIteration<? extends Statement,SailException> |
InferencerConnectionWrapper.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection. |
boolean |
InferencerConnectionWrapper.removeInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
InferencerConnection.removeInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Removes an inferred statement from a specific context.
|
Modifier and Type | Method and Description |
---|---|
boolean |
DedupingInferencerConnection.addInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
SchemaCachingRDFSInferencerConnection.addStatement(Resource subject,
IRI predicate,
Value object,
Resource... contexts) |
void |
SchemaCachingRDFSInferencerConnection.addStatement(UpdateContext modify,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
DedupingInferencerConnection.removeInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
CustomGraphQueryInferencerSchema.MATCHER_QUERY
http://www.openrdf.org/config/sail/customGraphQueryInferencer#matcherQuery
|
static IRI |
CustomGraphQueryInferencerSchema.QUERY_LANGUAGE
http://www.openrdf.org/config/sail/customGraphQueryInferencer#queryLanguage
|
static IRI |
CustomGraphQueryInferencerSchema.RULE_QUERY
http://www.openrdf.org/config/sail/customGraphQueryInferencer#ruleQuery
|
Modifier and Type | Method and Description |
---|---|
protected void |
RDFInferencerInserter.addStatement(Resource subj,
IRI pred,
Value obj,
Resource ctxt) |
Modifier and Type | Field and Description |
---|---|
static IRI |
LuceneSailSchema.ALL_MATCHES |
static IRI |
LuceneSailSchema.ALL_PROPERTIES |
static IRI |
LuceneSailSchema.CONTEXT |
static IRI |
LuceneSailSchema.DISTANCE |
static IRI |
LuceneSailSchema.LUCENE_QUERY |
static IRI |
LuceneSailSchema.MATCHES |
static IRI |
LuceneSailSchema.PROPERTY |
static IRI |
LuceneSailSchema.QUERY |
static IRI |
LuceneSailSchema.SCORE |
static IRI |
LuceneSailSchema.SEARCH
"Magic property" (TupleFunction) IRI.
|
static IRI |
LuceneSailSchema.SNIPPET |
static IRI |
LuceneSailSchema.WITHIN_DISTANCE |
Modifier and Type | Method and Description |
---|---|
IRI |
GeoRelationQuerySpec.getGeoProperty() |
IRI |
DistanceQuerySpec.getGeoProperty() |
IRI |
QuerySpec.getPropertyURI() |
IRI |
QuerySpec.getQueryType()
the type of query, must equal
LuceneSailSchema.LUCENE_QUERY . |
IRI |
DistanceQuerySpec.getUnits() |
Modifier and Type | Method and Description |
---|---|
void |
LuceneSailConnection.addStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected Iterable<? extends DocumentDistance> |
LuceneIndex.geoQuery(IRI geoProperty,
org.locationtech.spatial4j.shape.Point p,
IRI units,
double distance,
String distanceVar,
Var contextVar) |
protected abstract Iterable<? extends DocumentDistance> |
AbstractSearchIndex.geoQuery(IRI geoProperty,
org.locationtech.spatial4j.shape.Point p,
IRI units,
double distance,
String distanceVar,
Var context) |
protected Iterable<? extends DocumentResult> |
LuceneIndex.geoRelationQuery(String relation,
IRI geoProperty,
org.locationtech.spatial4j.shape.Shape shape,
Var contextVar) |
protected abstract Iterable<? extends DocumentResult> |
AbstractSearchIndex.geoRelationQuery(String relation,
IRI geoProperty,
org.locationtech.spatial4j.shape.Shape shape,
Var context) |
static String |
SearchFields.getPropertyField(IRI property) |
void |
SearchQuery.highlight(IRI property)
Deprecated.
Highlights the given field or all fields if null.
|
void |
LuceneQuery.highlight(IRI property)
Deprecated.
|
protected SearchQuery |
LuceneIndex.parseQuery(String query,
IRI propertyURI)
Deprecated.
|
protected abstract SearchQuery |
AbstractSearchIndex.parseQuery(String q,
IRI property)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
LuceneIndex.query(Resource subject,
String query,
IRI propertyURI,
boolean highlight)
Parse the passed query.
|
protected abstract Iterable<? extends DocumentScore> |
AbstractSearchIndex.query(Resource subject,
String q,
IRI property,
boolean highlight) |
void |
LuceneSailConnection.removeStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
DistanceQuerySpec.setUnits(IRI units) |
Constructor and Description |
---|
DistanceQuerySpec(Literal from,
IRI units,
double dist,
String distVar,
IRI geoProperty,
String geoVar,
String subjectVar,
Var contextVar) |
LuceneDocumentDistance(org.apache.lucene.search.ScoreDoc doc,
String geoProperty,
IRI units,
org.locationtech.spatial4j.shape.Point origin,
boolean includeContext,
LuceneIndex index) |
QuerySpec(StatementPattern matchesPattern,
StatementPattern queryPattern,
StatementPattern propertyPattern,
StatementPattern scorePattern,
StatementPattern snippetPattern,
StatementPattern typePattern,
Resource subject,
String queryString,
IRI propertyURI) |
QuerySpec(String matchesVarName,
String propertyVarName,
String scoreVarName,
String snippetVarName,
Resource subject,
String queryString,
IRI propertyURI) |
Modifier and Type | Field and Description |
---|---|
static IRI |
LuceneSailConfigSchema.INDEX_DIR |
Modifier and Type | Method and Description |
---|---|
static double |
GeoUnits.fromDegrees(double degs,
IRI units) |
static double |
GeoUnits.fromKilometres(double kms,
IRI units) |
static double |
GeoUnits.fromMiles(double miles,
IRI units) |
static double |
GeoUnits.toDegrees(double distance,
IRI units) |
static double |
GeoUnits.toKilometres(double distance,
IRI units) |
static double |
GeoUnits.toMiles(double distance,
IRI units) |
Modifier and Type | Method and Description |
---|---|
boolean |
MemoryStoreConnection.addInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStoreConnection.addStatementInternal(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
MemoryStoreConnection.removeInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
MemoryStoreSchema.PERSIST
http://www.openrdf.org/config/sail/memory#persist
|
static IRI |
MemoryStoreSchema.SYNC_DELAY
http://www.openrdf.org/config/sail/memory#syncDelay
|
Modifier and Type | Class and Description |
---|---|
class |
MemIRI
A MemoryStore-specific implementation of URI that stores separated namespace and local name information to enable
reuse of namespace String objects (reducing memory usage) and that gives it node properties.
|
Modifier and Type | Method and Description |
---|---|
IRI |
MemValueFactory.createIRI(String uri) |
IRI |
MemValueFactory.createIRI(String namespace,
String localName) |
Modifier and Type | Method and Description |
---|---|
protected Literal |
MemValueFactory.createFPLiteral(Number n,
IRI datatype) |
protected Literal |
MemValueFactory.createIntegerLiteral(Number n,
IRI datatype) |
Literal |
MemValueFactory.createLiteral(String value,
IRI datatype) |
MemIRI |
MemValueFactory.getMemURI(IRI uri)
See getMemValue() for description.
|
MemIRI |
MemValueFactory.getOrCreateMemURI(IRI uri)
See
MemValueFactory.getOrCreateMemValue(Value) for description. |
Constructor and Description |
---|
CalendarMemLiteral(Object creator,
String label,
IRI datatype,
XMLGregorianCalendar calendar) |
DecimalMemLiteral(Object creator,
BigDecimal value,
IRI datatype) |
DecimalMemLiteral(Object creator,
String label,
BigDecimal value,
IRI datatype) |
IntegerMemLiteral(Object creator,
BigInteger value,
IRI datatype) |
IntegerMemLiteral(Object creator,
String label,
BigInteger value,
IRI datatype) |
MemLiteral(Object creator,
String label,
IRI datatype)
Creates a new Literal which will get the supplied label and datatype.
|
NumericMemLiteral(Object creator,
Number number,
IRI datatype) |
NumericMemLiteral(Object creator,
String label,
Number number,
IRI datatype) |
Modifier and Type | Method and Description |
---|---|
boolean |
SailModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Model |
SailModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
SailModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
boolean |
NativeStoreConnection.addInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.addStatementInternal(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
NativeLiteral |
ValueStore.createLiteral(String value,
IRI datatype) |
NativeIRI |
ValueStore.getNativeURI(IRI uri)
Creates a NativeURI that is equal to the supplied URI.
|
boolean |
NativeStoreConnection.removeInferredStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.removeStatementsInternal(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Field and Description |
---|---|
static IRI |
NativeStoreSchema.FORCE_SYNC
http://www.openrdf.org/config/sail/native#forceSync
|
static IRI |
NativeStoreSchema.NAMESPACE_CACHE_SIZE
http://www.openrdf.org/config/sail/native#namespaceCacheSize
|
static IRI |
NativeStoreSchema.NAMESPACE_ID_CACHE_SIZE
http://www.openrdf.org/config/sail/native#namespaceIDCacheSize
|
static IRI |
NativeStoreSchema.TRIPLE_INDEXES
http://www.openrdf.org/config/sail/native#tripleIndexes
|
static IRI |
NativeStoreSchema.VALUE_CACHE_SIZE
http://www.openrdf.org/config/sail/native#valueCacheSize
|
static IRI |
NativeStoreSchema.VALUE_ID_CACHE_SIZE
http://www.openrdf.org/config/sail/native#valueIDCacheSize
|
Modifier and Type | Class and Description |
---|---|
class |
NativeIRI |
Constructor and Description |
---|
NativeLiteral(ValueStoreRevision revision,
String label,
IRI datatype) |
NativeLiteral(ValueStoreRevision revision,
String label,
IRI datatype,
int internalID) |
Modifier and Type | Method and Description |
---|---|
IRI |
SourceConstraintComponent.getIri() |
Modifier and Type | Method and Description |
---|---|
static List<IRI> |
ShaclSail.getSupportedShaclPredicates()
Lists the predicates that have been implemented in the ShaclSail.
|
Modifier and Type | Method and Description |
---|---|
void |
ShaclSailConnection.addStatement(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
ShaclSailConnection.addStatement(UpdateContext modify,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
CloseableIteration<? extends Statement,SailException> |
ShaclSailConnection.getStatements(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
ShaclSailConnection.hasStatement(Resource subj,
IRI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
ShaclSailConnection.removeStatement(UpdateContext modify,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
ShaclSailConnection.removeStatements(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
IRI |
SimplePath.getPath() |
Modifier and Type | Field and Description |
---|---|
static IRI |
ShaclSailSchema.CACHE_SELECT_NODES
http://rdf4j.org/config/sail/shacl#cacheSelectNodes |
static IRI |
ShaclSailSchema.GLOBAL_LOG_VALIDATION_EXECUTION
http://rdf4j.org/config/sail/shacl#globalLogValidationExecution |
static IRI |
ShaclSailSchema.IGNORE_NO_SHAPES_LOADED_EXCEPTION
http://rdf4j.org/config/sail/shacl#ignoreNoShapesLoadedException |
static IRI |
ShaclSailSchema.LOG_VALIDATION_PLANS
http://rdf4j.org/config/sail/shacl#logValidationPlans |
static IRI |
ShaclSailSchema.LOG_VALIDATION_VIOLATIONS
http://rdf4j.org/config/sail/shacl#logValidationViolations |
static IRI |
ShaclSailSchema.PARALLEL_VALIDATION
http://rdf4j.org/config/sail/shacl#parallelValidation |
static IRI |
ShaclSailSchema.RDFS_SUB_CLASS_REASONING
http://rdf4j.org/config/sail/shacl#rdfsSubClassReasoning |
static IRI |
ShaclSailSchema.UNDEFINED_TARGET_VALIDATES_ALL_SUBJECTS
http://rdf4j.org/config/sail/shacl#undefinedTargetValidatesAllSubjects |
static IRI |
ShaclSailSchema.VALIDATION_ENABLED
http://rdf4j.org/config/sail/shacl#validationEnabled |
Modifier and Type | Method and Description |
---|---|
protected Iterable<? extends DocumentDistance> |
SolrIndex.geoQuery(IRI geoProperty,
org.locationtech.spatial4j.shape.Point p,
IRI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
SolrIndex.geoRelationQuery(String relation,
IRI geoProperty,
org.locationtech.spatial4j.shape.Shape shape,
Var contextVar) |
void |
SolrSearchQuery.highlight(IRI property)
Deprecated.
Highlights the given field or all fields if null.
|
protected SearchQuery |
SolrIndex.parseQuery(String query,
IRI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
SolrIndex.query(Resource subject,
String query,
IRI propertyURI,
boolean highlight)
Parse the passed query.
|
Constructor and Description |
---|
SolrDocumentDistance(SolrSearchDocument doc,
IRI units) |
Modifier and Type | Field and Description |
---|---|
static IRI |
SpinSailSchema.AXIOM_CLOSURE_NEEDED
http://www.openrdf.org/config/sail/spin#axiomClosureNeeded
|
Modifier and Type | Method and Description |
---|---|
IRI |
Argument.getPredicate() |
IRI |
Template.getUri() |
IRI |
RuleProperty.getUri() |
IRI |
Argument.getValueType() |
Modifier and Type | Method and Description |
---|---|
List<IRI> |
RuleProperty.getNextRules() |
static List<IRI> |
SpinParser.orderArguments(Set<IRI> args) |
Map<IRI,Argument> |
SpinParser.parseArguments(IRI moduleUri,
TripleSource store) |
Map<IRI,RuleProperty> |
SpinParser.parseRuleProperties(TripleSource store) |
Modifier and Type | Method and Description |
---|---|
protected ParsedOperation |
SpinParser.parse(Resource queryResource,
IRI queryClass,
TripleSource store) |
Map<IRI,Argument> |
SpinParser.parseArguments(IRI moduleUri,
TripleSource store) |
Function |
SpinParser.parseFunction(IRI funcUri,
TripleSource store) |
TupleFunction |
SpinParser.parseMagicProperty(IRI propUri,
TripleSource store) |
void |
SpinParser.reset(IRI... uris)
Resets/clears any cached information about the given URIs.
|
Modifier and Type | Method and Description |
---|---|
ParsedOperation |
Template.call(Map<IRI,Value> argValues) |
static List<IRI> |
SpinParser.orderArguments(Set<IRI> args) |
void |
RuleProperty.setNextRules(List<IRI> nextRules) |
Constructor and Description |
---|
Argument(IRI IRI,
IRI valueType,
boolean optional,
Value defaultValue) |
RuleProperty(IRI ruleUri) |
Template(IRI IRI) |
Constructor and Description |
---|
SpinParser(SpinParser.Input input,
com.google.common.base.Function<IRI,String> wellKnownVarsMapper,
com.google.common.base.Function<IRI,String> wellKnownFuncMapper) |
SpinParser(SpinParser.Input input,
com.google.common.base.Function<IRI,String> wellKnownVarsMapper,
com.google.common.base.Function<IRI,String> wellKnownFuncMapper) |
SpinRenderer(SpinRenderer.Output output,
com.google.common.base.Function<String,IRI> wellKnownVarMapper,
com.google.common.base.Function<String,IRI> wellKnownFuncMapper,
ValueFactory vf) |
SpinRenderer(SpinRenderer.Output output,
com.google.common.base.Function<String,IRI> wellKnownVarMapper,
com.google.common.base.Function<String,IRI> wellKnownFuncMapper,
ValueFactory vf) |
Modifier and Type | Method and Description |
---|---|
TupleFunction |
TupleFunctionParser.parse(IRI uri,
TripleSource store) |
Function |
SpinxFunctionParser.parse(IRI funcUri,
TripleSource store) |
TupleFunction |
SpinTupleFunctionParser.parse(IRI funcUri,
TripleSource store) |
Function |
SpinTupleFunctionAsFunctionParser.parse(IRI funcUri,
TripleSource store) |
Function |
SpinFunctionParser.parse(IRI funcUri,
TripleSource store) |
TupleFunction |
KnownTupleFunctionParser.parse(IRI funcUri,
TripleSource store) |
Function |
KnownFunctionParser.parse(IRI funcUri,
TripleSource store) |
Function |
FunctionParser.parse(IRI uri,
TripleSource store) |
Constructor and Description |
---|
KnownFunctionParser(FunctionRegistry functionRegistry,
com.google.common.base.Function<IRI,String> wellKnownFunctions) |
Copyright © 2015-2019 Eclipse Foundation. All Rights Reserved.