| Package | Description |
|---|---|
| org.eclipse.rdf4j | |
| org.eclipse.rdf4j.model |
RDF Model API
|
| org.eclipse.rdf4j.model.datatypes | |
| org.eclipse.rdf4j.model.impl |
Default implementations of the RDF model interfaces.
|
| org.eclipse.rdf4j.model.util | |
| org.eclipse.rdf4j.model.vocabulary |
Static constants for various vocabularies.
|
| 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 |
|---|---|
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 4.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 4.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 |
Graph.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
Adds one or more statements to the graph.
|
boolean |
Model.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the model.
|
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.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 4.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 |
AbstractValueFactory.createIRI(String iri) |
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 |
EmptyModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
GraphImpl.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
LinkedHashModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.add(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.add(Resource s,
IRI p,
Value o,
Resource... c) |
boolean |
EmptyModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.contains(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.contains(Resource s,
IRI p,
Value o,
Resource... c) |
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 |
AbstractValueFactory.createLiteral(String value,
IRI datatype) |
protected Literal |
AbstractValueFactory.createNumericLiteral(Number number,
IRI datatype)
Creates specific optimized subtypes of SimpleLiteral for numeric datatypes.
|
Statement |
AbstractValueFactory.createStatement(Resource subject,
IRI predicate,
Value object) |
Statement |
AbstractValueFactory.createStatement(Resource subject,
IRI predicate,
Value object,
Resource context) |
Model |
EmptyModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Model |
LinkedHashModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Model |
TreeModel.filter(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
Model |
FilteredModel.filter(Resource s,
IRI p,
Value o,
Resource... c) |
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 |
EmptyModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.remove(Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.remove(Resource s,
IRI p,
Value o,
Resource... c) |
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 |
EmptyModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
IRI pred,
Value obj,
Resource... contexts) |
void |
TreeModel.removeTermIteration(Iterator<Statement> iterator,
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 |
FilteredModel.removeTermIteration(Iterator<Statement> iter,
Resource s,
IRI p,
Value o,
Resource... c) |
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.8.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.8.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.8.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.8.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.subjectIRI() instead. |
| Modifier and Type | Method and Description |
|---|---|
static Optional<IRI> |
Models.objectIRI(Model m)
Retrieves an object
IRI value 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. |
| Modifier and Type | Method and Description |
|---|---|
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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.0. Use
Model.filter(Resource, IRI, Value, Resource...) and
Model.subjectIRI() instead. |
static Iterator<Resource> |
GraphUtil.getSubjectIterator(Graph graph,
IRI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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 |
DCTERMS.ACCESS_RIGHTS
http://purl.org/dc/terms/accessRights
|
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 |
SP.ADD |
static IRI |
FOAF.AGE |
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 |
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.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 |
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 |
SP.AND |
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 |
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 |
EARL.ASSERTOR |
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.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 |
FOAF.BASED_NEAR |
static IRI |
SD.BASIC_FEDERATED_QUERY
Basic Federated Query
|
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 |
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 |
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 |
SPIF.CAN_INVOKE_FUNCTION |
static IRI |
EARL.CANNOTTELL |
static IRI |
OWL.CARDINALITY
http://www.w3.org/2002/07/owl#cardinality
|
static IRI |
SPIF.CAST_FUNCTION |
static IRI |
DOAP.CATEGORY |
static IRI |
SKOS.CHANGE_NOTE
The skos:changeNote property.
|
static IRI |
OWL.CLASS
http://www.w3.org/2002/07/owl#Class
|
static IRI |
RDFS.CLASS
http://www.w3.org/2000/01/rdf-schema#Class
|
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 |
SP.COALESCE |
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 |
DCTERMS.CONFORMS_TO
http://purl.org/dc/terms/conformsTo
|
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 |
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 |
RDFS.CONTAINER
http://www.w3.org/2000/01/rdf-schema#Container
|
static IRI |
RDFS.CONTAINERMEMBERSHIPPROPERTY
http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty
|
static IRI |
FN.CONTAINS
fn:contains
|
static IRI |
DC.CONTRIBUTOR
dc:contributor
|
static IRI |
DCTERMS.CONTRIBUTOR
http://purl.org/dc/terms/contributor
|
static IRI |
SPIF.CONVERT_SPIN_RDF_TO_STRING_FUNCTION |
static IRI |
GEOF.CONVEX_HULL |
static IRI |
SP.COUNT_CLASS
http://spinrdf.org/sp#Count Counts the number of times a variable is used.
|
static IRI |
DC.COVERAGE
dc:coverage
|
static IRI |
DCTERMS.COVERAGE
http://purl.org/dc/terms/coverage
|
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 |
DCTERMS.CREATED
http://purl.org/dc/terms/created
|
static IRI |
DOAP.CREATED |
static IRI |
DC.CREATOR
dc:creator
|
static IRI |
DCTERMS.CREATOR
http://purl.org/dc/terms/creator
|
static IRI |
FOAF.CURRENT_PROJECT |
static IRI |
SPIF.CURRENT_TIME_MILLIS_FUNCTION |
static IRI |
SP.DATA_PROPERTY |
static IRI |
SD.DATASET
Dataset
|
static IRI |
SP.DATATYPE |
static IRI |
RDFS.DATATYPE
http://www.w3.org/2000/01/rdf-schema#Datatype
|
static IRI |
OWL.DATATYPEPROPERTY
http://www.w3.org/2002/07/owl#DatatypeProperty
|
static IRI |
DC.DATE
dc:date
|
static IRI |
XMLSchema.DATE
http://www.w3.org/2001/XMLSchema#date
|
static IRI |
DCTERMS.DATE
http://purl.org/dc/terms/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 |
XMLSchema.DECIMAL
http://www.w3.org/2001/XMLSchema#decimal
|
static IRI |
SPIF.DECIMAL_FORMAT_FUNCTION |
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 |
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.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 |
SP.DESC_CLASS
http://spinrdf.org/sp#Desc Marker to indicate descending order.
|
static IRI |
SP.DESCRIBE_CLASS
http://spinrdf.org/sp#Describe A DESCRIBE-type Query.
|
static IRI |
DC.DESCRIPTION
dc:description
|
static IRI |
DCTERMS.DESCRIPTION
http://purl.org/dc/terms/description
|
static IRI |
DOAP.DESCRIPTION |
static IRI |
DOAP.DEVELOPER |
static IRI |
GEOF.DIFFERENCE |
static IRI |
OWL.DIFFERENTFROM
http://www.w3.org/2002/07/owl#differentFrom
|
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 |
OWL.DISJOINTWITH
http://www.w3.org/2002/07/owl#disjointWith
|
static IRI |
GEOF.DISTANCE |
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 |
OWL.DISTINCTMEMBERS
http://www.w3.org/2002/07/owl#distinctMembers
|
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 |
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 |
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 |
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 |
XMLSchema.ENTITY
http://www.w3.org/2001/XMLSchema#ENTITY
|
static IRI |
GEOF.ENVELOPE |
static IRI |
SP.EQ |
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 |
SKOS.EXAMPLE
The skos:example property.
|
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 |
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 |
FOAF.FAMILY_NAME |
static IRI |
FOAF.FAMILYNAME
Deprecated.
Use FAMILY_NAME instead for new statements
|
static IRI |
SPIN.FATAL_VIOLATION_LEVEL |
static IRI |
SD.FEATURE_CLASS
Feature
|
static IRI |
SD.FEATURE_PROPERTY
feature
|
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 |
XMLSchema.FLOAT
http://www.w3.org/2001/XMLSchema#float
|
static IRI |
FOAF.FOCUS |
static IRI |
SPIF.FOR_EACH_PROPERTY |
static IRI |
SPIF.FOR_PROPERTY |
static IRI |
DC.FORMAT
dc:format
|
static IRI |
DCTERMS.FORMAT
http://purl.org/dc/terms/format
|
static IRI |
DCTERMS.FREQUENCY
http://purl.org/dc/terms/Frequency
|
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 |
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 |
FOAF.GENDER |
static IRI |
SPIF.GENERATE_UUID_FUNCTION |
static IRI |
GEOF.GET_SRID |
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 |
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 |
SPIF.HAS_ALL_OBJECTS_FUNCTION |
static IRI |
DCTERMS.HAS_FORMAT
http://purl.org/dc/terms/hasFormat
|
static IRI |
DCTERMS.HAS_PART
http://purl.org/dc/terms/hasPart
|
static IRI |
SKOS.HAS_TOP_CONCEPT
The skos:hasTopConcept relation.
|
static IRI |
DCTERMS.HAS_VERSION
http://purl.org/dc/terms/hasVersion
|
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 |
EARL.HEURISTIC |
static IRI |
XMLSchema.HEXBINARY
http://www.w3.org/2001/XMLSchema#hexBinary
|
static IRI |
SKOS.HIDDEN_LABEL
The skos:hiddenLabel lexical label property.
|
static IRI |
SKOS.HISTORY_NOTE
The skos:historyNote property.
|
static IRI |
FOAF.HOLDS_ACCOUNT |
static IRI |
FOAF.HOMEPAGE |
static IRI |
DOAP.HOMEPAGE |
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 |
DC.IDENTIFIER
dc:identifier
|
static IRI |
DCTERMS.IDENTIFIER
http://purl.org/dc/terms/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 |
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 |
SKOS.IN_SCHEME
The skos:inScheme relation.
|
static IRI |
OWL.INCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#incompatibleWith
|
static IRI |
LIST.INDEX |
static IRI |
SPIF.INDEX_OF_FUNCTION |
static IRI |
OWL.INDIVIDUAL
http://www.w3.org/2002/07/owl#Individual
|
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 |
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 |
GEOF.INTERSECTION |
static IRI |
OWL.INTERSECTIONOF
http://www.w3.org/2002/07/owl#intersectionOf
|
static IRI |
SP.INTO_PROPERTY
http://spinrdf.org/sp#into The (optional) target of a LOAD Update operation.
|
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 |
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 |
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 |
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 |
FOAF.KNOWS |
static IRI |
RDFS.LABEL
http://www.w3.org/2000/01/rdf-schema#label
|
static IRI |
FOAF.LABEL_PROPERTY |
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 |
SP.LANG |
static IRI |
RDF.LANGSTRING
http://www.w3.org/1999/02/22-rdf-syntax-ns#langString
|
static IRI |
SD.LANGUAGE
Language
|
static IRI |
DC.LANGUAGE
dc:language
|
static IRI |
XMLSchema.LANGUAGE
http://www.w3.org/2001/XMLSchema#language
|
static IRI |
DCTERMS.LANGUAGE
http://purl.org/dc/terms/language
|
static IRI |
SD.LANGUAGE_EXTENSION
language extension
|
static IRI |
SPIF.LAST_INDEX_OF_FUNCTION |
static IRI |
FOAF.LAST_NAME |
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 |
LIST.LENGTH |
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 |
DCTERMS.LICENSE
http://purl.org/dc/terms/license
|
static IRI |
DOAP.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 |
RDF.LIST
http://www.w3.org/1999/02/22-rdf-syntax-ns#List
|
static IRI |
RDFS.LITERAL
http://www.w3.org/2000/01/rdf-schema#Literal
|
static IRI |
SP.LOAD_CLASS
http://spinrdf.org/sp#Load A LOAD Update operation.
|
static IRI |
AFN.LOCALNAME
http://jena.hpl.hp.com/ARQ/function#localname The LocalName QueryModelNode as a SPARQL function.
|
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 |
FOAF.LOGO |
static IRI |
XMLSchema.LONG
http://www.w3.org/2001/XMLSchema#long
|
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 |
DOAP.MAILING_LIST |
static IRI |
DOAP.MAINTAINER |
static IRI |
FOAF.MAKER |
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 |
OWL.MAXCARDINALITY
http://www.w3.org/2002/07/owl#maxCardinality
|
static IRI |
FOAF.MBOX |
static IRI |
FOAF.MBOX_SHA1SUM |
static IRI |
DCTERMS.MEDIA_TYPE
http://purl.org/dc/terms/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 |
RDFS.MEMBER
http://www.w3.org/2000/01/rdf-schema#member
|
static IRI |
FOAF.MEMBER |
static IRI |
SKOS.MEMBER
The skos:member relation.
|
static IRI |
LIST.MEMBER |
static IRI |
SKOS.MEMBER_LIST
The skos:memberList relation.
|
static IRI |
FOAF.MEMBERSHIP_CLASS |
static IRI |
DCTERMS.MESH
http://purl.org/dc/terms/MESH
|
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 |
OWL.MINCARDINALITY
http://www.w3.org/2002/07/owl#minCardinality
|
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 |
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 |
FOAF.MSN_CHAT_ID |
static IRI |
SP.MUL |
static IRI |
FOAF.MYERS_BRIGGS |
static IRI |
SD.NAME
name
|
static IRI |
FOAF.NAME |
static IRI |
XMLSchema.NAME
http://www.w3.org/2001/XMLSchema#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 |
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 |
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 |
RDF.NIL
http://www.w3.org/1999/02/22-rdf-syntax-ns#nil
|
static IRI |
SESAME.NIL
The SPARQL null context identifier ( http://www.openrdf.org/schema/sesame#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 |
SP.NODE_PROPERTY |
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 |
XMLSchema.NORMALIZEDSTRING
http://www.w3.org/2001/XMLSchema#normalizedString
|
static IRI |
SP.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 |
SKOS.NOTATION
The skos:notation property.
|
static IRI |
XMLSchema.NOTATION
http://www.w3.org/2001/XMLSchema#NOTATION
|
static IRI |
EARL.NOTAVAILABLE |
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 |
SP.OFFSET_PROPERTY
http://spinrdf.org/sp#offset The OFFSET solution modifier of a Query.
|
static IRI |
DOAP.OLD_HOMEPAGE |
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.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 |
FOAF.OPENID |
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 |
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 |
FOAF.ORGANIZATION |
static IRI |
EARL.OUTCOME |
static IRI |
FOAF.PAGE |
static IRI |
SPIF.PARSE_DATE_FUNCTION |
static IRI |
EARL.PASS |
static IRI |
FOAF.PAST_PROJECT |
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 |
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 |
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 |
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 |
RDF.PREDICATE
http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate
|
static IRI |
SP.PREDICATE_PROPERTY
http://spinrdf.org/sp#predicate A resource or Variable describing the predicate of a triple.
|
static IRI |
SPL.PREDICATE_PROPERTY
http://spinrdf.org/spl#predicate
|
static IRI |
SKOS.PREF_LABEL
The skos:prefLabel lexical label property.
|
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 |
DOAP.PROGRAMMING_LANGUAGE |
static IRI |
FOAF.PROJECT |
static IRI |
DOAP.PROJECT
Classes
|
static IRI |
RDF.PROPERTY
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
static IRI |
SD.PROPERTY_FEATURE
property feature
|
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 |
DC.PUBLISHER
dc:publisher
|
static IRI |
DCTERMS.PUBLISHER
http://purl.org/dc/terms/publisher
|
static IRI |
SESAMEQNAME.QNAME
http://www.openrdf.org/schema/qname#qname
|
static IRI |
XMLSchema.QNAME
http://www.w3.org/2001/XMLSchema#QName
|
static IRI |
SP.QUERY_CLASS
http://spinrdf.org/sp#Query Abstract base class of the various types of supported queries.
|
static IRI |
SP.QUERY_PROPERTY
http://spinrdf.org/sp#query Links a SubQuery resource with the nested Query.
|
static IRI |
SPIN.QUERY_PROPERTY
http://spinrdf.org/spin#query Can be used to point from any resource to a 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 |
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 |
SP.REGEX |
static IRI |
GEOF.RELATE |
static IRI |
SKOS.RELATED
The skos:related relation.
|
static IRI |
SKOS.RELATED_MATCH
The skos:relatedMatch relation.
|
static IRI |
DC.RELATION
dc:relation
|
static IRI |
DCTERMS.RELATION
http://purl.org/dc/terms/relation
|
static IRI |
DOAP.RELEASE |
static IRI |
FN.REPLACE
fn:replace
|
static IRI |
SPIF.REPLACE_ALL_FUNCTION |
static IRI |
DCTERMS.REPLACES
http://purl.org/dc/terms/replaces
|
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 |
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 |
EARL.RESULT |
static IRI |
SD.RESULT_FORMAT
result format
|
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 |
SP.RESULT_VARIABLES_PROPERTY
http://spinrdf.org/sp#resultVariables An rdf:List of variables that are returned by a Select query.
|
static IRI |
SPIN.RETURN_TYPE_PROPERTY
http://spinrdf.org/spin#returnType The return type of a Function, e.g.
|
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 |
DC.RIGHTS
dc:rights
|
static IRI |
DCTERMS.RIGHTS
http://purl.org/dc/terms/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 |
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 |
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 |
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 |
XMLSchema.SHORT
http://www.w3.org/2001/XMLSchema#short
|
static IRI |
SP.SILENT_PROPERTY |
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 |
DC.SOURCE
dc:source
|
static IRI |
DCTERMS.SOURCE
http://purl.org/dc/terms/source
|
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 |
DCTERMS.SPATIAL
http://purl.org/dc/terms/spatial
|
static IRI |
SPIF.SPLIT_PROPERTY |
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 |
XMLSchema.STRING
http://www.w3.org/2001/XMLSchema#string
|
static IRI |
FN.STRING_LENGTH
fn:string-length
|
static IRI |
SP.SUB |
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 |
DC.SUBJECT
dc:subject
|
static IRI |
EARL.SUBJECT |
static IRI |
DCTERMS.SUBJECT
http://purl.org/dc/terms/subject
|
static IRI |
SP.SUBJECT_PROPERTY
http://spinrdf.org/sp#subject A resource or Variable describing the subject of a triple.
|
static IRI |
RDFS.SUBPROPERTYOF
http://www.w3.org/2000/01/rdf-schema#subPropertyOf
|
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 |
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 |
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 |
EARL.TEST |
static IRI |
EARL.TEST_SUBJECT |
static IRI |
EARL.TESTRESULT |
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 |
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 |
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 |
DC.TITLE
dc:title
|
static IRI |
FOAF.TITLE |
static IRI |
DCTERMS.TITLE
http://purl.org/dc/terms/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 |
FOAF.TOPIC |
static IRI |
FOAF.TOPIC_INTEREST |
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 |
SP.TUPLE_CLASS
http://spinrdf.org/sp#Tuple Abstract base class for things that have subject and object.
|
static IRI |
RDF.TYPE
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
|
static IRI |
DC.TYPE
dc:type
|
static IRI |
DCTERMS.TYPE
http://purl.org/dc/terms/type
|
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 |
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 |
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 |
SP.USING_NAMED_PROPERTY |
static IRI |
SP.USING_PROPERTY |
static IRI |
DCTERMS.VALID
http://purl.org/dc/terms/valid
|
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 |
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 |
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 |
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 |
DCTERMS.W3CDTF
http://purl.org/dc/terms/W3CDTF
|
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 |
GEO.WKT_LITERAL |
static IRI |
FOAF.WORK_INFO_HOMEPAGE |
static IRI |
FOAF.WORKPLACE_HOMEPAGE |
static IRI |
RDF.XMLLITERAL
http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
|
static IRI |
FOAF.YAHOO_CHAT_ID |
static IRI |
FN.YEAR_FROM_DATETIME
fn:year-from-dateTime
|
Copyright © 2015-2016 Eclipse Foundation. All Rights Reserved.