| Package | Description |
|---|---|
| org.openrdf.model |
RDF model interfaces.
|
| org.openrdf.model.datatypes | |
| org.openrdf.model.impl |
Default implementations of the RDF model interfaces.
|
| org.openrdf.model.util | |
| org.openrdf.model.vocabulary |
Static constants for various vocabularies.
|
| Modifier and Type | Method and Description |
|---|---|
URI |
ValueFactory.createURI(String uri)
Creates a new URI from the supplied string-representation.
|
URI |
ValueFactory.createURI(String namespace,
String localName)
Creates a new URI from the supplied namespace and local name.
|
URI |
Literal.getDatatype()
Gets the datatype for this literal.
|
URI |
Statement.getPredicate()
Gets the predicate of this statement.
|
URI |
Model.objectURI()
Utility method that casts the return value of
Model.objectValue() to a
URI, or throws a ModelUtilException if that value is not a URI. |
| Modifier and Type | Method and Description |
|---|---|
Set<URI> |
Model.predicates()
Returns a
Set view of the predicates contained in this model. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
Graph.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the graph.
|
boolean |
Model.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the model.
|
boolean |
Model.contains(Resource subj,
URI 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,
URI datatype)
Creates a new literal with the supplied label and datatype.
|
Statement |
ValueFactory.createStatement(Resource subject,
URI predicate,
Value object)
Creates a new statement with the supplied subject, predicate and object.
|
Statement |
ValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
Creates a new statement with the supplied subject, predicate and object
and associated context.
|
Model |
Model.filter(Resource subj,
URI 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,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
Model.remove(Resource subj,
URI 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 URI |
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,
URI datatype) |
static boolean |
XMLDatatypeUtil.isBuiltInDatatype(URI datatype)
Checks whether the supplied datatype is a built-in XML Schema datatype.
|
static boolean |
XMLDatatypeUtil.isCalendarDatatype(URI 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(URI 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(URI datatype)
Checks whether the supplied datatype is a derived XML Schema datatype.
|
static boolean |
XMLDatatypeUtil.isFloatingPointDatatype(URI datatype)
Checks whether the supplied datatype is equal to xsd:float or xsd:double.
|
static boolean |
XMLDatatypeUtil.isIntegerDatatype(URI 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(URI datatype)
Checks whether the supplied datatype is a numeric datatype, i.e.
|
static boolean |
XMLDatatypeUtil.isOrderedDatatype(URI datatype)
Checks whether the supplied datatype is ordered.
|
static boolean |
XMLDatatypeUtil.isPrimitiveDatatype(URI datatype)
Checks whether the supplied datatype is a primitive XML Schema datatype.
|
static boolean |
XMLDatatypeUtil.isValidValue(String value,
URI datatype) |
static String |
XMLDatatypeUtil.normalize(String value,
URI datatype)
Normalizes the supplied value according to the normalization rules for the
supplied datatype.
|
| Modifier and Type | Class and Description |
|---|---|
class |
URIImpl
The default implementation of the
URI interface. |
| Modifier and Type | Method and Description |
|---|---|
URI |
ValueFactoryImpl.createURI(String uri) |
URI |
ValueFactoryImpl.createURI(String namespace,
String localName) |
URI |
LiteralImpl.getDatatype() |
URI |
StatementImpl.getPredicate() |
URI |
AbstractModel.objectURI() |
| Modifier and Type | Method and Description |
|---|---|
Set<URI> |
AbstractModel.predicates() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
TreeModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.add(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
EmptyModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
GraphImpl.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
TreeModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.contains(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
EmptyModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected Literal |
ValueFactoryBase.createFPLiteral(Number value,
URI datatype)
Calls
ValueFactoryBase.createNumericLiteral(Number, URI) with the supplied value
and datatype as parameters. |
protected Literal |
ValueFactoryBase.createIntegerLiteral(Number value,
URI datatype)
Calls
ValueFactoryBase.createNumericLiteral(Number, URI) with the supplied value
and datatype as parameters. |
Literal |
ValueFactoryImpl.createLiteral(String value,
URI datatype) |
protected Literal |
ValueFactoryBase.createNumericLiteral(Number number,
URI datatype)
Calls
ValueFactory.createLiteral(String, URI) with the
String-value of the supplied number and the supplied datatype as
parameters. |
Statement |
ValueFactoryImpl.createStatement(Resource subject,
URI predicate,
Value object) |
Statement |
ValueFactoryImpl.createStatement(Resource subject,
URI predicate,
Value object,
Resource context) |
Model |
TreeModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
LinkedHashModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
FilteredModel.filter(Resource s,
URI p,
Value o,
Resource... c) |
Model |
EmptyModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Iterator<Statement> |
AbstractModel.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
Iterator<Statement> |
GraphImpl.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
TreeModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
FilteredModel.remove(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
EmptyModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected abstract void |
FilteredModel.removeFilteredTermIteration(Iterator<Statement> iter,
Resource subj,
URI 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,
URI pred,
Value obj,
Resource... contexts) |
void |
FilteredModel.removeTermIteration(Iterator<Statement> iter,
Resource s,
URI p,
Value o,
Resource... c) |
void |
EmptyModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
abstract void |
AbstractModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI 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,
URI pred,
Value obj,
Resource... contexts) |
protected void |
LiteralImpl.setDatatype(URI datatype) |
| Constructor and Description |
|---|
ContextStatementImpl(Resource subject,
URI predicate,
Value object,
Resource context)
Creates a new Statement with the supplied subject, predicate and object
for the specified associated context.
|
DecimalLiteralImpl(BigDecimal value,
URI datatype)
Creates a literal with the specified value and datatype.
|
FilteredModel(AbstractModel model,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
IntegerLiteralImpl(BigInteger value,
URI datatype)
Creates a literal with the specified value and datatype.
|
LiteralImpl(String label,
URI datatype)
Creates a new datyped literal with the supplied label and datatype.
|
NumericLiteralImpl(Number number,
URI datatype)
Creates a literal with the specified value and datatype.
|
StatementImpl(Resource subject,
URI predicate,
Value object)
Creates a new Statement with the supplied subject, predicate and object.
|
| Modifier and Type | Method and Description |
|---|---|
static URI |
GraphUtil.getOptionalObjectURI(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static URI |
GraphUtil.getOptionalSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Utility method that casts the return value of
GraphUtil.getOptionalSubject(Graph, URI, Value, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static URI |
GraphUtil.getUniqueObjectURI(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static URI |
GraphUtil.getUniqueSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Utility method that casts the return value of
GraphUtil.getUniqueSubject(Graph, URI, Value, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
| Modifier and Type | Method and Description |
|---|---|
static Iterator<Value> |
GraphUtil.getObjectIterator(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the objects of the statements with the specified subject, predicate
and (optionally) contexts from the supplied graph.
|
static Set<Value> |
GraphUtil.getObjects(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the objects of the statements with the specified subject, predicate
and (optionally) contexts from the supplied graph.
|
static Value |
GraphUtil.getOptionalObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the object of the statement(s) with the specified subject and
predicate from the specified contexts in the supplied graph.
|
static Literal |
GraphUtil.getOptionalObjectLiteral(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a Literal,
or throws a GraphUtilException if that value is not a Literal. |
static Resource |
GraphUtil.getOptionalObjectResource(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a
Resource, or throws a GraphUtilException if that value is not a Resource. |
static URI |
GraphUtil.getOptionalObjectURI(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static Resource |
GraphUtil.getOptionalSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statement(s) with the specified predicate and
object from the specified contexts in the supplied graph.
|
static URI |
GraphUtil.getOptionalSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Utility method that casts the return value of
GraphUtil.getOptionalSubject(Graph, URI, Value, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static Iterator<Resource> |
GraphUtil.getSubjectIterator(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statements with the specified predicate, object
and (optionally) contexts from the supplied graph.
|
static Set<Resource> |
GraphUtil.getSubjects(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statements with the specified predicate, object
and (optionally) contexts from the supplied graph.
|
static Value |
GraphUtil.getUniqueObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Gets the object of the statement(s) with the specified subject and
predicate from the specified contexts in the supplied graph.
|
static Literal |
GraphUtil.getUniqueObjectLiteral(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Literal,
or throws a GraphUtilException if that value is not a Literal. |
static Resource |
GraphUtil.getUniqueObjectResource(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Resource,
or throws a GraphUtilException if that value is not a Resource. |
static URI |
GraphUtil.getUniqueObjectURI(Graph graph,
Resource subj,
URI pred)
Utility method that casts the return value of
GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static Resource |
GraphUtil.getUniqueSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Gets the subject of the statement(s) with the specified predicate and
object from the specified contexts in the supplied graph.
|
static URI |
GraphUtil.getUniqueSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Utility method that casts the return value of
GraphUtil.getUniqueSubject(Graph, URI, Value, Resource[]) to a URI, or
throws a GraphUtilException if that value is not a URI. |
static void |
GraphUtil.remove(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Utility method that removes all statements matching the specified criteria
from a graph.
|
static void |
GraphUtil.setUniqueObject(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds the specified statement and makes sure that no other statements are
present in the Graph with the same subject and predicate.
|
| Modifier and Type | Field and Description |
|---|---|
static URI |
OWL.ALLDIFFERENT
http://www.w3.org/2002/07/owl#AllDifferent
|
static URI |
OWL.ALLVALUESFROM
http://www.w3.org/2002/07/owl#allValuesFrom
|
static URI |
RDF.ALT
http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt
|
static URI |
SKOS.ALT_LABEL
The skos:altLabel lexical label property.
|
static URI |
OWL.ANNOTATIONPROPERTY
http://www.w3.org/2002/07/owl#AnnotationProperty
|
static URI |
XMLSchema.ANYURI
http://www.w3.org/2001/XMLSchema#anyURI
|
static URI |
OWL.BACKWARDCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#backwardCompatibleWith
|
static URI |
RDF.BAG
http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag
|
static URI |
XMLSchema.BASE64BINARY
http://www.w3.org/2001/XMLSchema#base64Binary
|
static URI |
XMLSchema.BOOLEAN
http://www.w3.org/2001/XMLSchema#boolean
|
static URI |
SKOS.BROAD_MATCH
The skos:broadMatch relation.
|
static URI |
SKOS.BROADER
The skos:broader relation.
|
static URI |
SKOS.BROADER_TRANSITIVE
The skos:broaderTransitive relation.
|
static URI |
XMLSchema.BYTE
http://www.w3.org/2001/XMLSchema#byte
|
static URI |
OWL.CARDINALITY
http://www.w3.org/2002/07/owl#cardinality
|
static URI |
SKOS.CHANGE_NOTE
The skos:changeNote property.
|
static URI |
RDFS.CLASS
http://www.w3.org/2000/01/rdf-schema#Class
|
static URI |
OWL.CLASS
http://www.w3.org/2002/07/owl#Class
|
static URI |
SKOS.CLOSE_MATCH
The skos:closeMatch relation.
|
static URI |
SKOS.COLLECTION
The skos:Collection class
|
static URI |
RDFS.COMMENT
http://www.w3.org/2000/01/rdf-schema#comment
|
static URI |
OWL.COMPLEMENTOF
http://www.w3.org/2002/07/owl#complementOf
|
static URI |
FN.CONCAT
fn:concat
|
static URI |
SKOS.CONCEPT
The skos:Concept class
|
static URI |
SKOS.CONCEPT_SCHEME
The skos:ConceptScheme class
|
static URI |
RDFS.CONTAINER
http://www.w3.org/2000/01/rdf-schema#Container
|
static URI |
RDFS.CONTAINERMEMBERSHIPPROPERTY
http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty
|
static URI |
FN.CONTAINS
fn:contains
|
static URI |
DC.CONTRIBUTOR
dc:contributor
|
static URI |
DC.COVERAGE
dc:coverage
|
static URI |
DC.CREATOR
dc:creator
|
static URI |
RDFS.DATATYPE
http://www.w3.org/2000/01/rdf-schema#Datatype
|
static URI |
OWL.DATATYPEPROPERTY
http://www.w3.org/2002/07/owl#DatatypeProperty
|
static URI |
XMLSchema.DATE
http://www.w3.org/2001/XMLSchema#date
|
static URI |
DC.DATE
dc:date
|
static URI |
XMLSchema.DATETIME
http://www.w3.org/2001/XMLSchema#dateTime
|
static URI |
FN.DAY_FROM_DATETIME
fn:day-from-dateTime
|
static URI |
XMLSchema.DAYTIMEDURATION
http://www.w3.org/2001/XMLSchema#dayTimeDuration
|
static URI |
XMLSchema.DECIMAL
http://www.w3.org/2001/XMLSchema#decimal
|
static URI |
SKOS.DEFINITION
The skos:definition property.
|
static URI |
OWL.DEPRECATEDCLASS
http://www.w3.org/2002/07/owl#DeprecatedClass
|
static URI |
OWL.DEPRECATEDPROPERTY
http://www.w3.org/2002/07/owl#DeprecatedProperty
|
static URI |
DC.DESCRIPTION
dc:description
|
static URI |
OWL.DIFFERENTFROM
http://www.w3.org/2002/07/owl#differentFrom
|
static URI |
SESAME.DIRECTSUBCLASSOF
http://www.openrdf.org/schema/sesame#directSubClassOf
|
static URI |
SESAME.DIRECTSUBPROPERTYOF
http://www.openrdf.org/schema/sesame#directSubPropertyOf
|
static URI |
SESAME.DIRECTTYPE
http://www.openrdf.org/schema/sesame#directType
|
static URI |
OWL.DISJOINTWITH
http://www.w3.org/2002/07/owl#disjointWith
|
static URI |
OWL.DISTINCTMEMBERS
http://www.w3.org/2002/07/owl#distinctMembers
|
static URI |
RDFS.DOMAIN
http://www.w3.org/2000/01/rdf-schema#domain
|
static URI |
XMLSchema.DOUBLE
http://www.w3.org/2001/XMLSchema#double
|
static URI |
XMLSchema.DURATION
http://www.w3.org/2001/XMLSchema#duration
|
static URI |
SKOS.EDITORIAL_NOTE
The skos:editorialNote property.
|
static URI |
FN.ENCODE_FOR_URI
fn:encode-for-uri
|
static URI |
FN.ENDS_WITH
fn:ends-with
|
static URI |
XMLSchema.ENTITIES
http://www.w3.org/2001/XMLSchema#ENTITIES
|
static URI |
XMLSchema.ENTITY
http://www.w3.org/2001/XMLSchema#ENTITY
|
static URI |
OWL.EQUIVALENTCLASS
http://www.w3.org/2002/07/owl#equivalentClass
|
static URI |
OWL.EQUIVALENTPROPERTY
http://www.w3.org/2002/07/owl#equivalentProperty
|
static URI |
SKOS.EXACT_MATCH
The skos:exactMatch relation.
|
static URI |
SKOS.EXAMPLE
The skos:example property.
|
static URI |
RDF.FIRST
http://www.w3.org/1999/02/22-rdf-syntax-ns#first
|
static URI |
XMLSchema.FLOAT
http://www.w3.org/2001/XMLSchema#float
|
static URI |
DC.FORMAT
dc:format
|
static URI |
OWL.FUNCTIONALPROPERTY
http://www.w3.org/2002/07/owl#FunctionalProperty
|
static URI |
XMLSchema.GDAY
http://www.w3.org/2001/XMLSchema#gDay
|
static URI |
XMLSchema.GMONTH
http://www.w3.org/2001/XMLSchema#gMonth
|
static URI |
XMLSchema.GMONTHDAY
http://www.w3.org/2001/XMLSchema#gMonthDay
|
static URI |
XMLSchema.GYEAR
http://www.w3.org/2001/XMLSchema#gYear
|
static URI |
XMLSchema.GYEARMONTH
http://www.w3.org/2001/XMLSchema#gYearMonth
|
static URI |
SKOS.HAS_TOP_CONCEPT
The skos:hasTopConcept relation.
|
static URI |
OWL.HASVALUE
http://www.w3.org/2002/07/owl#hasValue
|
static URI |
XMLSchema.HEXBINARY
http://www.w3.org/2001/XMLSchema#hexBinary
|
static URI |
SKOS.HIDDEN_LABEL
The skos:hiddenLabel lexical label property.
|
static URI |
SKOS.HISTORY_NOTE
The skos:historyNote property.
|
static URI |
FN.HOURS_FROM_DATETIME
fn:hours-from-dateTime
|
static URI |
XMLSchema.ID
http://www.w3.org/2001/XMLSchema#ID
|
static URI |
DC.IDENTIFIER
dc:identifier
|
static URI |
XMLSchema.IDREF
http://www.w3.org/2001/XMLSchema#IDREF
|
static URI |
XMLSchema.IDREFS
http://www.w3.org/2001/XMLSchema#IDREFS
|
static URI |
OWL.IMPORTS
http://www.w3.org/2002/07/owl#imports
|
static URI |
SKOS.IN_SCHEME
The skos:inScheme relation.
|
static URI |
OWL.INCOMPATIBLEWITH
http://www.w3.org/2002/07/owl#incompatibleWith
|
static URI |
OWL.INDIVIDUAL
http://www.w3.org/2002/07/owl#Individual
|
static URI |
XMLSchema.INT
http://www.w3.org/2001/XMLSchema#int
|
static URI |
XMLSchema.INTEGER
http://www.w3.org/2001/XMLSchema#integer
|
static URI |
OWL.INTERSECTIONOF
http://www.w3.org/2002/07/owl#intersectionOf
|
static URI |
OWL.INVERSEFUNCTIONALPROPERTY
http://www.w3.org/2002/07/owl#InverseFunctionalProperty
|
static URI |
OWL.INVERSEOF
http://www.w3.org/2002/07/owl#inverseOf
|
static URI |
RDFS.ISDEFINEDBY
http://www.w3.org/2000/01/rdf-schema#isDefinedBy
|
static URI |
RDFS.LABEL
http://www.w3.org/2000/01/rdf-schema#label
|
static URI |
RDF.LANGSTRING
http://www.w3.org/1999/02/22-rdf-syntax-ns#langString
|
static URI |
XMLSchema.LANGUAGE
http://www.w3.org/2001/XMLSchema#language
|
static URI |
DC.LANGUAGE
dc:language
|
static URI |
RDF.LI
http://www.w3.org/1999/02/22-rdf-syntax-ns#li
|
static URI |
RDF.LIST
http://www.w3.org/1999/02/22-rdf-syntax-ns#List
|
static URI |
RDFS.LITERAL
http://www.w3.org/2000/01/rdf-schema#Literal
|
static URI |
XMLSchema.LONG
http://www.w3.org/2001/XMLSchema#long
|
static URI |
FN.LOWER_CASE
fn:lower-case
|
static URI |
SKOS.MAPPING_RELATION
The skos:mappingRelation relation.
|
static URI |
OWL.MAXCARDINALITY
http://www.w3.org/2002/07/owl#maxCardinality
|
static URI |
RDFS.MEMBER
http://www.w3.org/2000/01/rdf-schema#member
|
static URI |
SKOS.MEMBER
The skos:member relation.
|
static URI |
SKOS.MEMBER_LIST
The skos:memberList relation.
|
static URI |
OWL.MINCARDINALITY
http://www.w3.org/2002/07/owl#minCardinality
|
static URI |
FN.MINUTES_FROM_DATETIME
fn:minutes-from-dateTime
|
static URI |
FN.MONTH_FROM_DATETIME
fn:month-from-dateTime
|
static URI |
XMLSchema.NAME
http://www.w3.org/2001/XMLSchema#Name
|
static URI |
SKOS.NARROW_MATCH
The skos:narrowMatch relation.
|
static URI |
SKOS.NARROWER
The skos:narrower relation.
|
static URI |
SKOS.NARROWER_TRANSITIVE
The skos:narrowerTransitive relation.
|
static URI |
XMLSchema.NCNAME
http://www.w3.org/2001/XMLSchema#NCName
|
static URI |
XMLSchema.NEGATIVE_INTEGER
http://www.w3.org/2001/XMLSchema#negativeInteger
|
static URI |
SESAME.NIL
The SPARQL null context identifier (http://www.openrdf.org/schema/sesame#nil)
|
static URI |
RDF.NIL
http://www.w3.org/1999/02/22-rdf-syntax-ns#nil
|
static URI |
XMLSchema.NMTOKEN
http://www.w3.org/2001/XMLSchema#NMTOKEN
|
static URI |
XMLSchema.NMTOKENS
http://www.w3.org/2001/XMLSchema#NMTOKENS
|
static URI |
XMLSchema.NON_NEGATIVE_INTEGER
http://www.w3.org/2001/XMLSchema#nonNegativeInteger
|
static URI |
XMLSchema.NON_POSITIVE_INTEGER
http://www.w3.org/2001/XMLSchema#nonPositiveInteger
|
static URI |
XMLSchema.NORMALIZEDSTRING
http://www.w3.org/2001/XMLSchema#normalizedString
|
static URI |
SKOS.NOTATION
The skos:notation property.
|
static URI |
XMLSchema.NOTATION
http://www.w3.org/2001/XMLSchema#NOTATION
|
static URI |
SKOS.NOTE
The skos:note property.
|
static URI |
OWL.NOTHING
http://www.w3.org/2002/07/owl#Nothing
|
static URI |
FN.NUMERIC_ABS
fn:numeric-abs
|
static URI |
FN.NUMERIC_CEIL
fn:numeric-ceil
|
static URI |
FN.NUMERIC_FLOOR
fn:numeric-floor
|
static URI |
FN.NUMERIC_ROUND
fn:numeric-round
|
static URI |
RDF.OBJECT
http://www.w3.org/1999/02/22-rdf-syntax-ns#object
|
static URI |
OWL.OBJECTPROPERTY
http://www.w3.org/2002/07/owl#ObjectProperty
|
static URI |
OWL.ONEOF
http://www.w3.org/2002/07/owl#oneOf
|
static URI |
OWL.ONPROPERTY
http://www.w3.org/2002/07/owl#onProperty
|
static URI |
OWL.ONTOLOGY
http://www.w3.org/2002/07/owl#Ontology
|
static URI |
OWL.ONTOLOGYPROPERTY
http://www.w3.org/2002/07/owl#OntologyProperty
|
static URI |
SKOS.ORDERED_COLLECTION
The skos:OrderedCollection class
|
static URI |
XMLSchema.POSITIVE_INTEGER
http://www.w3.org/2001/XMLSchema#positiveInteger
|
static URI |
RDF.PREDICATE
http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate
|
static URI |
SKOS.PREF_LABEL
The skos:prefLabel lexical label property.
|
static URI |
OWL.PRIORVERSION
http://www.w3.org/2002/07/owl#priorVersion
|
static URI |
RDF.PROPERTY
http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
static URI |
DC.PUBLISHER
dc:publisher
|
static URI |
XMLSchema.QNAME
http://www.w3.org/2001/XMLSchema#QName
|
static URI |
RDFS.RANGE
http://www.w3.org/2000/01/rdf-schema#range
|
static URI |
SKOS.RELATED
The skos:related relation.
|
static URI |
SKOS.RELATED_MATCH
The skos:relatedMatch relation.
|
static URI |
DC.RELATION
dc:relation
|
static URI |
FN.REPLACE
fn:replace
|
static URI |
RDFS.RESOURCE
http://www.w3.org/2000/01/rdf-schema#Resource
|
static URI |
RDF.REST
http://www.w3.org/1999/02/22-rdf-syntax-ns#rest
|
static URI |
OWL.RESTRICTION
http://www.w3.org/2002/07/owl#Restriction
|
static URI |
DC.RIGHTS
dc:rights
|
static URI |
OWL.SAMEAS
http://www.w3.org/2002/07/owl#sameAs
|
static URI |
SKOS.SCOPE_NOTE
The skos:scopeNote property.
|
static URI |
FN.SECONDS_FROM_DATETIME
fn:seconds-from-dateTime
|
static URI |
RDFS.SEEALSO
http://www.w3.org/2000/01/rdf-schema#seeAlso
|
static URI |
SKOS.SEMANTIC_RELATION
The skos:semanticRelation relation.
|
static URI |
RDF.SEQ
http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
|
static URI |
XMLSchema.SHORT
http://www.w3.org/2001/XMLSchema#short
|
static URI |
OWL.SOMEVALUESFROM
http://www.w3.org/2002/07/owl#someValuesFrom
|
static URI |
DC.SOURCE
dc:source
|
static URI |
FN.STARTS_WITH
fn:starts-with
|
static URI |
RDF.STATEMENT
http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement
|
static URI |
XMLSchema.STRING
http://www.w3.org/2001/XMLSchema#string
|
static URI |
FN.STRING_LENGTH
fn:string-length
|
static URI |
RDFS.SUBCLASSOF
http://www.w3.org/2000/01/rdf-schema#subClassOf
|
static URI |
RDF.SUBJECT
http://www.w3.org/1999/02/22-rdf-syntax-ns#subject
|
static URI |
DC.SUBJECT
dc:subject
|
static URI |
RDFS.SUBPROPERTYOF
http://www.w3.org/2000/01/rdf-schema#subPropertyOf
|
static URI |
FN.SUBSTRING
fn:substring
|
static URI |
FN.SUBSTRING_AFTER
fn:substring-after
|
static URI |
FN.SUBSTRING_BEFORE
fn:substring-before
|
static URI |
OWL.SYMMETRICPROPERTY
http://www.w3.org/2002/07/owl#SymmetricProperty
|
static URI |
OWL.THING
http://www.w3.org/2002/07/owl#Thing
|
static URI |
XMLSchema.TIME
http://www.w3.org/2001/XMLSchema#time
|
static URI |
FN.TIMEZONE_FROM_DATETIME
fn:timezone-from-dateTime
|
static URI |
DC.TITLE
dc:title
|
static URI |
XMLSchema.TOKEN
http://www.w3.org/2001/XMLSchema#token
|
static URI |
SKOS.TOP_CONCEPT_OF
The skos:topConceptOf relation.
|
static URI |
OWL.TRANSITIVEPROPERTY
http://www.w3.org/2002/07/owl#TransitiveProperty
|
static URI |
RDF.TYPE
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
|
static URI |
DC.TYPE
dc:type
|
static URI |
OWL.UNIONOF
http://www.w3.org/2002/07/owl#unionOf
|
static URI |
XMLSchema.UNSIGNED_BYTE
http://www.w3.org/2001/XMLSchema#unsignedByte
|
static URI |
XMLSchema.UNSIGNED_INT
http://www.w3.org/2001/XMLSchema#unsignedInt
|
static URI |
XMLSchema.UNSIGNED_LONG
http://www.w3.org/2001/XMLSchema#unsignedLong
|
static URI |
XMLSchema.UNSIGNED_SHORT
http://www.w3.org/2001/XMLSchema#unsignedShort
|
static URI |
FN.UPPER_CASE
fn:upper-case
|
static URI |
RDF.VALUE
http://www.w3.org/1999/02/22-rdf-syntax-ns#value
|
static URI |
OWL.VERSIONINFO
http://www.w3.org/2002/07/owl#versionInfo
|
static URI |
RDF.XMLLITERAL
http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
|
static URI |
FN.YEAR_FROM_DATETIME
fn:year-from-dateTime
|
Copyright © 2001-2013 Aduna. All Rights Reserved.