|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of URI in org.openrdf.http.client |
|---|
| Methods in org.openrdf.http.client with parameters of type URI | |
|---|---|
void |
HTTPClient.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
|
| Uses of URI in org.openrdf.http.protocol |
|---|
| Methods in org.openrdf.http.protocol that return URI | |
|---|---|
static URI |
Protocol.decodeURI(String encodedValue,
ValueFactory valueFactory)
Decode a previously encoded URI. |
| Uses of URI in org.openrdf.http.protocol.transaction.operations |
|---|
| Methods in org.openrdf.http.protocol.transaction.operations that return URI | |
|---|---|
URI |
StatementOperation.getPredicate()
|
| Methods in org.openrdf.http.protocol.transaction.operations with parameters of type URI | |
|---|---|
void |
StatementOperation.setPredicate(URI predicate)
|
| Constructors in org.openrdf.http.protocol.transaction.operations with parameters of type URI | |
|---|---|
AddStatementOperation(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Create an AddStatementOperation. |
|
RemoveStatementsOperation(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Creates a RemoveStatementsOperation. |
|
| Uses of URI in org.openrdf.http.server |
|---|
| Methods in org.openrdf.http.server that return URI | |
|---|---|
static URI |
ProtocolUtil.parseGraphParam(javax.servlet.http.HttpServletRequest request,
ValueFactory vf)
|
static URI |
ProtocolUtil.parseURIParam(javax.servlet.http.HttpServletRequest request,
String paramName,
ValueFactory vf)
|
| Uses of URI in org.openrdf.model |
|---|
| Methods in org.openrdf.model that return URI | |
|---|---|
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. |
| Methods in org.openrdf.model with parameters of type URI | |
|---|---|
boolean |
Graph.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the graph. |
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. |
Iterator<Statement> |
Graph.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets the statements with the specified subject, predicate, object and (optionally) context. |
| Uses of URI in org.openrdf.model.datatypes |
|---|
| Methods in org.openrdf.model.datatypes that return URI | |
|---|---|
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. |
| Methods in org.openrdf.model.datatypes with parameters of type URI | |
|---|---|
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. |
| Uses of URI in org.openrdf.model.impl |
|---|
| Classes in org.openrdf.model.impl that implement URI | |
|---|---|
class |
URIImpl
The default implementation of the URI interface. |
| Methods in org.openrdf.model.impl that return URI | |
|---|---|
URI |
ValueFactoryImpl.createURI(String uri)
|
URI |
ValueFactoryImpl.createURI(String namespace,
String localName)
|
URI |
LiteralImpl.getDatatype()
|
URI |
StatementImpl.getPredicate()
|
| Methods in org.openrdf.model.impl with parameters of type URI | |
|---|---|
boolean |
GraphImpl.add(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)
|
Iterator<Statement> |
GraphImpl.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected void |
LiteralImpl.setDatatype(URI datatype)
|
| Constructors in org.openrdf.model.impl with parameters of type URI | |
|---|---|
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. |
|
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. |
|
| Uses of URI in org.openrdf.model.util |
|---|
| Methods in org.openrdf.model.util that return URI | |
|---|---|
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. |
| Methods in org.openrdf.model.util with parameters of type URI | |
|---|---|
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. |
| Uses of URI in org.openrdf.model.vocabulary |
|---|
| Fields in org.openrdf.model.vocabulary declared as URI | |
|---|---|
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 |
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 |
XMLSchema.BYTE
http://www.w3.org/2001/XMLSchema#byte |
static URI |
OWL.CARDINALITY
http://www.w3.org/2002/07/owl#cardinality |
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 |
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 |
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 |
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 |
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 |
OWL.DEPRECATEDCLASS
http://www.w3.org/2002/07/owl#DeprecatedClass |
static URI |
OWL.DEPRECATEDPROPERTY
http://www.w3.org/2002/07/owl#DeprecatedProperty |
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 |
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 |
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 |
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 |
OWL.HASVALUE
http://www.w3.org/2002/07/owl#hasValue |
static URI |
XMLSchema.HEXBINARY
http://www.w3.org/2001/XMLSchema#hexBinary |
static URI |
FN.HOURS_FROM_DATETIME
fn:hours-from-dateTime |
static URI |
XMLSchema.ID
http://www.w3.org/2001/XMLSchema#ID |
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 |
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 |
XMLSchema.LANGUAGE
http://www.w3.org/2001/XMLSchema#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 |
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 |
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 |
XMLSchema.NCNAME
http://www.w3.org/2001/XMLSchema#NCName |
static URI |
XMLSchema.NEGATIVE_INTEGER
http://www.w3.org/2001/XMLSchema#negativeInteger |
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 |
XMLSchema.NOTATION
http://www.w3.org/2001/XMLSchema#NOTATION |
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 |
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 |
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 |
XMLSchema.QNAME
http://www.w3.org/2001/XMLSchema#QName |
static URI |
RDFS.RANGE
http://www.w3.org/2000/01/rdf-schema#range |
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 |
OWL.SAMEAS
http://www.w3.org/2002/07/owl#sameAs |
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 |
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 |
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 |
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 |
XMLSchema.TIME
http://www.w3.org/2001/XMLSchema#time |
static URI |
FN.TIMEZONE_FROM_DATETIME
fn:timezone-from-dateTime |
static URI |
XMLSchema.TOKEN
http://www.w3.org/2001/XMLSchema#token |
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 |
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 |
| Uses of URI in org.openrdf.query |
|---|
| Methods in org.openrdf.query that return types with arguments of type URI | |
|---|---|
Set<URI> |
Dataset.getDefaultGraphs()
Gets the default graph URIs of this dataset. |
Set<URI> |
Dataset.getNamedGraphs()
Gets the named graph URIs of this dataset. |
| Uses of URI in org.openrdf.query.algebra.evaluation |
|---|
| Methods in org.openrdf.query.algebra.evaluation with parameters of type URI | |
|---|---|
CloseableIteration<? extends Statement,QueryEvaluationException> |
TripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object. |
| Uses of URI in org.openrdf.query.algebra.evaluation.federation |
|---|
| Methods in org.openrdf.query.algebra.evaluation.federation with parameters of type URI | |
|---|---|
protected static StringBuilder |
SPARQLFederatedService.appendURI(StringBuilder sb,
URI uri)
Append the uri to the stringbuilder, i.e. |
| Uses of URI in org.openrdf.query.algebra.evaluation.impl |
|---|
| Methods in org.openrdf.query.algebra.evaluation.impl that return URI | |
|---|---|
URI |
EvaluationStrategyImpl.evaluate(IRIFunction node,
BindingSet bindings)
Creates a URI from the operand value (a plain literal or a URI). |
| Uses of URI in org.openrdf.query.dawg |
|---|
| Fields in org.openrdf.query.dawg declared as URI | |
|---|---|
static URI |
DAWGTestResultSetSchema.BINDING
|
static URI |
DAWGTestResultSetSchema.BOOLEAN
|
static URI |
DAWGTestResultSetSchema.RESULTSET
|
static URI |
DAWGTestResultSetSchema.RESULTVARIABLE
|
static URI |
DAWGTestResultSetSchema.SOLUTION
|
static URI |
DAWGTestResultSetSchema.VALUE
|
static URI |
DAWGTestResultSetSchema.VARIABLE
|
| Uses of URI in org.openrdf.query.impl |
|---|
| Fields in org.openrdf.query.impl with type parameters of type URI | |
|---|---|
protected Set<URI> |
DatasetImpl.defaultGraphs
|
protected Set<URI> |
DatasetImpl.namedGraphs
|
| Methods in org.openrdf.query.impl that return types with arguments of type URI | |
|---|---|
Set<URI> |
DatasetImpl.getDefaultGraphs()
|
Set<URI> |
DatasetImpl.getNamedGraphs()
Gets the (unmodifiable) set of named graph URIs. |
| Methods in org.openrdf.query.impl with parameters of type URI | |
|---|---|
void |
DatasetImpl.addDefaultGraph(URI graphURI)
Adds a graph URI to the set of default graph URIs. |
void |
DatasetImpl.addNamedGraph(URI graphURI)
Adds a graph URI to the set of named graph URIs. |
boolean |
DatasetImpl.removeDefaultGraph(URI graphURI)
Removes a graph URI from the set of default graph URIs. |
boolean |
DatasetImpl.removeNamedGraph(URI graphURI)
Removes a graph URI from the set of named graph URIs. |
| Uses of URI in org.openrdf.query.parser.sparql.ast |
|---|
| Methods in org.openrdf.query.parser.sparql.ast that return URI | |
|---|---|
URI |
ASTNumericLiteral.getDatatype()
|
| Methods in org.openrdf.query.parser.sparql.ast with parameters of type URI | |
|---|---|
void |
ASTNumericLiteral.setDatatype(URI datatype)
|
| Uses of URI in org.openrdf.query.resultio.text.csv |
|---|
| Methods in org.openrdf.query.resultio.text.csv with parameters of type URI | |
|---|---|
protected void |
SPARQLResultsCSVWriter.writeURI(URI uri)
|
| Uses of URI in org.openrdf.query.resultio.text.tsv |
|---|
| Methods in org.openrdf.query.resultio.text.tsv with parameters of type URI | |
|---|---|
protected void |
SPARQLResultsTSVWriter.writeURI(URI uri)
|
| Uses of URI in org.openrdf.repository |
|---|
| Methods in org.openrdf.repository with parameters of type URI | |
|---|---|
void |
RepositoryConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Adds a statement with the specified subject, predicate and object to this repository, optionally to one or more named contexts. |
void |
RepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts. |
RepositoryResult<Statement> |
RepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository. |
boolean |
RepositoryConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts. |
void |
RepositoryConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Removes the statement(s) with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts. |
| Uses of URI in org.openrdf.repository.base |
|---|
| Methods in org.openrdf.repository.base with parameters of type URI | |
|---|---|
void |
RepositoryConnectionWrapper.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
protected void |
RepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
protected abstract void |
RepositoryConnectionBase.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
|
RepositoryResult<Statement> |
RepositoryConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
boolean |
RepositoryConnectionWrapper.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
boolean |
RepositoryConnectionBase.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
RepositoryConnectionBase.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
protected void |
RepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
protected abstract void |
RepositoryConnectionBase.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
| Uses of URI in org.openrdf.repository.config |
|---|
| Fields in org.openrdf.repository.config declared as URI | |
|---|---|
static URI |
RepositoryConfigSchema.DELEGATE
http://www.openrdf.org/config/repository#delegate |
static URI |
RepositoryConfigSchema.REPOSITORY
http://www.openrdf.org/config/repository#Repository |
static URI |
RepositoryConfigSchema.REPOSITORY_CONTEXT
http://www.openrdf.org/config/repository#RepositoryContext |
static URI |
RepositoryConfigSchema.REPOSITORYID
http://www.openrdf.org/config/repository#repositoryID |
static URI |
RepositoryConfigSchema.REPOSITORYIMPL
http://www.openrdf.org/config/repository#repositoryImpl |
static URI |
RepositoryConfigSchema.REPOSITORYTYPE
http://www.openrdf.org/config/repository#repositoryType |
| Uses of URI in org.openrdf.repository.contextaware |
|---|
| Methods in org.openrdf.repository.contextaware that return URI | |
|---|---|
URI[] |
ContextAwareRepository.getAddContexts()
|
URI[] |
ContextAwareConnection.getAddContexts()
The contexts to add the statements to. |
URI[] |
ContextAwareRepository.getArchiveContexts()
|
URI[] |
ContextAwareConnection.getArchiveContexts()
Before Statements are removed, they are first copied to these contexts. |
URI[] |
ContextAwareRepository.getReadContexts()
|
URI[] |
ContextAwareConnection.getReadContexts()
The context(s) to get the data from. |
URI[] |
ContextAwareRepository.getRemoveContexts()
|
URI[] |
ContextAwareConnection.getRemoveContexts()
The context(s) to remove the data from. |
| Methods in org.openrdf.repository.contextaware with parameters of type URI | |
|---|---|
void |
ContextAwareConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
ContextAwareConnection.exportStatements(Resource subj,
URI pred,
Value obj,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts. |
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository. |
boolean |
ContextAwareConnection.hasStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts. |
void |
ContextAwareConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Removes the statement with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts. |
protected void |
ContextAwareConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
ContextAwareRepository.setAddContexts(URI... addContexts)
|
void |
ContextAwareConnection.setAddContexts(URI... addContexts)
The contexts to add the statements to. |
void |
ContextAwareRepository.setArchiveContexts(URI... archiveContexts)
|
void |
ContextAwareConnection.setArchiveContexts(URI... archiveContexts)
Before Statements are removed, they are first copied to these contexts. |
void |
ContextAwareRepository.setReadContexts(URI... readContexts)
|
void |
ContextAwareConnection.setReadContexts(URI... readContexts)
The context(s) to get the data from. |
void |
ContextAwareRepository.setRemoveContexts(URI... removeContexts)
|
void |
ContextAwareConnection.setRemoveContexts(URI... removeContexts)
The context(s) to remove the data from. |
| Uses of URI in org.openrdf.repository.contextaware.config |
|---|
| Fields in org.openrdf.repository.contextaware.config declared as URI | |
|---|---|
static URI |
ContextAwareSchema.ADD_CONTEXT
http://www.openrdf.org/config/repository/contextaware#addContext |
static URI |
ContextAwareSchema.ARCHIVE_CONTEXT
http://www.openrdf.org/config/repository/contextaware#archiveContext |
static URI |
ContextAwareSchema.INCLUDE_INFERRED
http://www.openrdf.org/config/repository/contextaware#includeInferred |
static URI |
ContextAwareSchema.MAX_QUERY_TIME
http://www.openrdf.org/config/repository/contextaware#maxQueryTime |
static URI |
ContextAwareSchema.QUERY_LANGUAGE
http://www.openrdf.org/config/repository/contextaware#queryLanguage |
static URI |
ContextAwareSchema.READ_CONTEXT
http://www.openrdf.org/config/repository/contextaware#readContext |
static URI |
ContextAwareSchema.REMOVE_CONTEXT
http://www.openrdf.org/config/repository/contextaware#removeContext |
| Methods in org.openrdf.repository.contextaware.config that return URI | |
|---|---|
URI[] |
ContextAwareConfig.getAddContexts()
|
URI[] |
ContextAwareConfig.getArchiveContexts()
|
URI[] |
ContextAwareConfig.getReadContexts()
|
URI[] |
ContextAwareConfig.getRemoveContexts()
|
| Methods in org.openrdf.repository.contextaware.config with parameters of type URI | |
|---|---|
void |
ContextAwareConfig.setAddContexts(URI... addContexts)
|
void |
ContextAwareConfig.setArchiveContexts(URI... archiveContexts)
|
void |
ContextAwareConfig.setReadContexts(URI... readContexts)
|
void |
ContextAwareConfig.setRemoveContexts(URI... removeContexts)
|
| Uses of URI in org.openrdf.repository.dataset |
|---|
| Methods in org.openrdf.repository.dataset with parameters of type URI | |
|---|---|
void |
DatasetRepository.loadDataset(URL url,
URI context)
|
| Uses of URI in org.openrdf.repository.event |
|---|
| Methods in org.openrdf.repository.event with parameters of type URI | |
|---|---|
void |
RepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
boolean |
RepositoryConnectionInterceptor.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
RepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
boolean |
RepositoryConnectionInterceptor.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
| Uses of URI in org.openrdf.repository.event.base |
|---|
| Methods in org.openrdf.repository.event.base with parameters of type URI | |
|---|---|
void |
RepositoryConnectionListenerAdapter.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
boolean |
RepositoryConnectionInterceptorAdapter.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
NotifyingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
InterceptingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
RepositoryConnectionListenerAdapter.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
boolean |
RepositoryConnectionInterceptorAdapter.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
NotifyingRepositoryConnectionWrapper.removeWithoutCommit(Resource subj,
URI pred,
Value obj,
Resource... ctx)
|
void |
InterceptingRepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
| Uses of URI in org.openrdf.repository.event.util |
|---|
| Methods in org.openrdf.repository.event.util with parameters of type URI | |
|---|---|
void |
DebugRepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
DebugRepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
| Uses of URI in org.openrdf.repository.http.config |
|---|
| Fields in org.openrdf.repository.http.config declared as URI | |
|---|---|
static URI |
HTTPRepositorySchema.PASSWORD
http://www.openrdf.org/config/repository/http#password |
static URI |
HTTPRepositorySchema.REPOSITORYURL
http://www.openrdf.org/config/repository/http#repositoryURL |
static URI |
HTTPRepositorySchema.USERNAME
http://www.openrdf.org/config/repository/http#username |
| Uses of URI in org.openrdf.repository.sail |
|---|
| Methods in org.openrdf.repository.sail with parameters of type URI | |
|---|---|
protected void |
SailRepositoryConnection.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
SailRepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
|
RepositoryResult<Statement> |
SailRepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
protected void |
SailRepositoryConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
| Uses of URI in org.openrdf.repository.sail.config |
|---|
| Fields in org.openrdf.repository.sail.config declared as URI | |
|---|---|
static URI |
SailRepositorySchema.SAILIMPL
http://www.openrdf.org/config/repository/sail#sailImpl |
| Uses of URI in org.openrdf.repository.sparql |
|---|
| Methods in org.openrdf.repository.sparql with parameters of type URI | |
|---|---|
void |
SPARQLConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
protected void |
SPARQLConnection.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
void |
SPARQLConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
|
RepositoryResult<Statement> |
SPARQLConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
boolean |
SPARQLConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
void |
SPARQLConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
protected void |
SPARQLConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts)
|
| Uses of URI in org.openrdf.repository.sparql.config |
|---|
| Fields in org.openrdf.repository.sparql.config declared as URI | |
|---|---|
static URI |
SPARQLRepositoryConfig.ENDPOINT
|
| Uses of URI in org.openrdf.rio.helpers |
|---|
| Methods in org.openrdf.rio.helpers that return URI | |
|---|---|
protected URI |
RDFParserBase.createURI(String uri)
Creates a URI object for the specified URI-string. |
protected URI |
RDFParserBase.resolveURI(String uriSpec)
Resolves a URI-string against the base URI and creates a URI
object for it. |
| Methods in org.openrdf.rio.helpers with parameters of type URI | |
|---|---|
protected Literal |
RDFParserBase.createLiteral(String label,
String lang,
URI datatype)
Creates a Literal object with the supplied parameters. |
protected Statement |
RDFParserBase.createStatement(Resource subj,
URI pred,
Value obj)
Creates a new Statement object with the supplied components. |
protected Statement |
RDFParserBase.createStatement(Resource subj,
URI pred,
Value obj,
Resource context)
Creates a new Statement object with the supplied components. |
| Uses of URI in org.openrdf.rio.ntriples |
|---|
| Methods in org.openrdf.rio.ntriples that return URI | |
|---|---|
protected URI |
NTriplesParser.createURI(String uri)
|
static URI |
NTriplesUtil.parseURI(String nTriplesURI,
ValueFactory valueFactory)
Parses an N-Triples URI, creates an object for it using the supplied ValueFactory and returns this object. |
| Methods in org.openrdf.rio.ntriples with parameters of type URI | |
|---|---|
static void |
NTriplesUtil.append(URI uri,
Appendable appendable)
|
static String |
NTriplesUtil.toNTriplesString(URI uri)
Creates an N-Triples string for the supplied URI. |
| Uses of URI in org.openrdf.rio.trig |
|---|
| Methods in org.openrdf.rio.trig with parameters of type URI | |
|---|---|
protected void |
TriGParser.reportStatement(Resource subj,
URI pred,
Value obj)
|
| Uses of URI in org.openrdf.rio.turtle |
|---|
| Fields in org.openrdf.rio.turtle declared as URI | |
|---|---|
protected URI |
TurtleWriter.lastWrittenPredicate
|
| Methods in org.openrdf.rio.turtle that return URI | |
|---|---|
protected URI |
TurtleParser.parsePredicate()
|
protected URI |
TurtleParser.parseURI()
|
| Methods in org.openrdf.rio.turtle with parameters of type URI | |
|---|---|
protected void |
TurtleParser.reportStatement(Resource subj,
URI pred,
Value obj)
|
protected void |
TurtleWriter.writePredicate(URI predicate)
|
protected void |
TurtleWriter.writeURI(URI uri)
|
| Uses of URI in org.openrdf.sail |
|---|
| Methods in org.openrdf.sail with parameters of type URI | |
|---|---|
void |
SailConnection.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds a statement to the store. |
CloseableIteration<? extends Statement,SailException> |
SailConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements from the specified contexts that have a specific subject, predicate and/or object. |
void |
SailConnection.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and object from the repository. |
| Uses of URI in org.openrdf.sail.config |
|---|
| Fields in org.openrdf.sail.config declared as URI | |
|---|---|
static URI |
SailConfigSchema.DELEGATE
http://www.openrdf.org/config/sail#delegate |
static URI |
SailConfigSchema.SAILTYPE
http://www.openrdf.org/config/sail#sailType |
| Uses of URI in org.openrdf.sail.helpers |
|---|
| Methods in org.openrdf.sail.helpers with parameters of type URI | |
|---|---|
void |
SailConnectionWrapper.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
void |
SailConnectionBase.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected abstract void |
SailConnectionBase.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
CloseableIteration<? extends Statement,SailException> |
SailConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
protected abstract CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
void |
SailConnectionWrapper.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
void |
SailConnectionBase.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected abstract void |
SailConnectionBase.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
| Uses of URI in org.openrdf.sail.inferencer |
|---|
| Methods in org.openrdf.sail.inferencer with parameters of type URI | |
|---|---|
boolean |
InferencerConnectionWrapper.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
boolean |
InferencerConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds an inferred statement to a specific context. |
CloseableIteration<? extends Statement,SailException> |
InferencerConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
boolean |
InferencerConnectionWrapper.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
boolean |
InferencerConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes an inferred statement from a specific context. |
| Uses of URI in org.openrdf.sail.memory |
|---|
| Methods in org.openrdf.sail.memory with parameters of type URI | ||
|---|---|---|
boolean |
MemoryStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
|
protected Statement |
MemoryStore.addStatement(Resource subj,
URI pred,
Value obj,
Resource context,
boolean explicit)
|
|
protected boolean |
MemoryStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
boolean explicit,
Resource... contexts)
Adds the specified statement to this MemoryStore. |
|
protected void |
MemoryStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
|
protected
|
MemoryStore.createStatementIterator(Class<X> excClass,
Resource subj,
URI pred,
Value obj,
boolean explicitOnly,
int snapshot,
ReadMode readMode,
Resource... contexts)
Creates a StatementIterator that contains the statements matching the specified pattern of subject, predicate, object, context. |
|
CloseableIteration<MemStatement,QueryEvaluationException> |
MemoryStoreConnection.MemTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
|
protected CloseableIteration<? extends Statement,SailException> |
MemoryStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
|
protected boolean |
MemoryStore.hasStatement(Resource subj,
URI pred,
Value obj,
boolean explicitOnly,
int snapshot,
ReadMode readMode,
Resource... contexts)
|
|
boolean |
MemoryStoreConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
|
boolean |
MemoryStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
|
protected boolean |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean explicit,
Resource... contexts)
Removes the statements that match the specified pattern of subject, predicate, object and context. |
|
protected void |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
|
| Uses of URI in org.openrdf.sail.memory.config |
|---|
| Fields in org.openrdf.sail.memory.config declared as URI | |
|---|---|
static URI |
MemoryStoreSchema.PERSIST
http://www.openrdf.org/config/sail/memory#persist |
static URI |
MemoryStoreSchema.SYNC_DELAY
http://www.openrdf.org/config/sail/memory#syncDelay |
| Uses of URI in org.openrdf.sail.memory.model |
|---|
| Classes in org.openrdf.sail.memory.model that implement URI | |
|---|---|
class |
MemURI
A MemoryStore-specific implementation of URI that stores separated namespace and local name information to enable reuse of namespace String objects (reducing memory usage) and that gives it node properties. |
| Methods in org.openrdf.sail.memory.model that return URI | |
|---|---|
URI |
MemValueFactory.createURI(String uri)
|
URI |
MemValueFactory.createURI(String namespace,
String localName)
|
| Methods in org.openrdf.sail.memory.model with parameters of type URI | |
|---|---|
protected Literal |
MemValueFactory.createFPLiteral(Number n,
URI datatype)
|
protected Literal |
MemValueFactory.createIntegerLiteral(Number n,
URI datatype)
|
Literal |
MemValueFactory.createLiteral(String value,
URI datatype)
|
Statement |
MemValueFactory.createStatement(Resource subject,
URI predicate,
Value object)
|
Statement |
MemValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
|
MemURI |
MemValueFactory.getMemURI(URI uri)
See getMemValue() for description. |
MemURI |
MemValueFactory.getOrCreateMemURI(URI uri)
See MemValueFactory.getOrCreateMemValue(Value) for description. |
| Constructors in org.openrdf.sail.memory.model with parameters of type URI | |
|---|---|
CalendarMemLiteral(Object creator,
String label,
URI datatype,
XMLGregorianCalendar calendar)
|
|
DecimalMemLiteral(Object creator,
BigDecimal value,
URI datatype)
|
|
DecimalMemLiteral(Object creator,
String label,
BigDecimal value,
URI datatype)
|
|
IntegerMemLiteral(Object creator,
BigInteger value,
URI datatype)
|
|
IntegerMemLiteral(Object creator,
String label,
BigInteger value,
URI datatype)
|
|
MemLiteral(Object creator,
String label,
URI datatype)
Creates a new Literal which will get the supplied label and datatype. |
|
NumericMemLiteral(Object creator,
Number number,
URI datatype)
|
|
NumericMemLiteral(Object creator,
String label,
Number number,
URI datatype)
|
|
| Uses of URI in org.openrdf.sail.nativerdf |
|---|
| Methods in org.openrdf.sail.nativerdf with parameters of type URI | |
|---|---|
boolean |
NativeStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected void |
NativeStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected double |
NativeStore.cardinality(Resource subj,
URI pred,
Value obj,
Resource context)
|
NativeLiteral |
ValueStore.createLiteral(String value,
URI datatype)
|
Statement |
ValueStore.createStatement(Resource subject,
URI predicate,
Value object)
|
Statement |
ValueStore.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
|
protected CloseableIteration<? extends Statement,IOException> |
NativeStore.createStatementIterator(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
boolean readTransaction,
Resource... contexts)
Creates a statement iterator based on the supplied pattern. |
NativeURI |
ValueStore.getNativeURI(URI uri)
Creates a NativeURI that is equal to the supplied URI. |
CloseableIteration<? extends Statement,QueryEvaluationException> |
NativeTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected CloseableIteration<? extends Statement,SailException> |
NativeStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
boolean |
NativeStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
protected void |
NativeStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
| Uses of URI in org.openrdf.sail.nativerdf.config |
|---|
| Fields in org.openrdf.sail.nativerdf.config declared as URI | |
|---|---|
static URI |
NativeStoreSchema.FORCE_SYNC
http://www.openrdf.org/config/sail/native#forceSync |
static URI |
NativeStoreSchema.NAMESPACE_CACHE_SIZE
http://www.openrdf.org/config/sail/native#namespaceCacheSize |
static URI |
NativeStoreSchema.NAMESPACE_ID_CACHE_SIZE
http://www.openrdf.org/config/sail/native#namespaceIDCacheSize |
static URI |
NativeStoreSchema.TRIPLE_INDEXES
http://www.openrdf.org/config/sail/native#tripleIndexes |
static URI |
NativeStoreSchema.VALUE_CACHE_SIZE
http://www.openrdf.org/config/sail/native#valueCacheSize |
static URI |
NativeStoreSchema.VALUE_ID_CACHE_SIZE
http://www.openrdf.org/config/sail/native#valueIDCacheSize |
| Uses of URI in org.openrdf.sail.nativerdf.model |
|---|
| Classes in org.openrdf.sail.nativerdf.model that implement URI | |
|---|---|
class |
NativeURI
|
| Constructors in org.openrdf.sail.nativerdf.model with parameters of type URI | |
|---|---|
NativeLiteral(ValueStoreRevision revision,
String label,
URI datatype)
|
|
NativeLiteral(ValueStoreRevision revision,
String label,
URI datatype,
int internalID)
|
|
| Uses of URI in org.openrdf.sail.rdbms |
|---|
| Methods in org.openrdf.sail.rdbms with parameters of type URI | |
|---|---|
protected void |
RdbmsConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
RdbmsURI |
RdbmsValueFactory.asRdbmsURI(URI uri)
|
RdbmsLiteral |
RdbmsValueFactory.createLiteral(String label,
URI datatype)
|
RdbmsStatement |
RdbmsValueFactory.createStatement(Resource subject,
URI predicate,
Value object)
|
RdbmsStatement |
RdbmsValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
|
RdbmsStatementIteration |
RdbmsTripleRepository.find(Resource subj,
URI pred,
Value obj,
Resource... ctxs)
|
protected CloseableIteration<? extends Statement,SailException> |
RdbmsConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
int |
RdbmsTripleRepository.remove(Resource subj,
URI pred,
Value obj,
Resource... ctxs)
|
protected void |
RdbmsConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
| Uses of URI in org.openrdf.sail.rdbms.algebra |
|---|
| Methods in org.openrdf.sail.rdbms.algebra with parameters of type URI | |
|---|---|
static ColumnVar |
ColumnVar.createPred(String alias,
Var v,
URI uri,
boolean implied)
|
| Uses of URI in org.openrdf.sail.rdbms.algebra.base |
|---|
| Methods in org.openrdf.sail.rdbms.algebra.base with parameters of type URI | |
|---|---|
static SqlExpr |
SqlExprSupport.str(URI uri)
|
| Uses of URI in org.openrdf.sail.rdbms.config |
|---|
| Fields in org.openrdf.sail.rdbms.config declared as URI | |
|---|---|
static URI |
RdbmsStoreSchema.JDBC_DRIVER
|
static URI |
RdbmsStoreSchema.MAX_TRIPLE_TABLES
|
static URI |
RdbmsStoreSchema.PASSWORD
|
static URI |
RdbmsStoreSchema.URL
|
static URI |
RdbmsStoreSchema.USER
|
| Uses of URI in org.openrdf.sail.rdbms.evaluation |
|---|
| Methods in org.openrdf.sail.rdbms.evaluation with parameters of type URI | |
|---|---|
CloseableIteration |
RdbmsTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
| Uses of URI in org.openrdf.sail.rdbms.model |
|---|
| Classes in org.openrdf.sail.rdbms.model that implement URI | |
|---|---|
class |
RdbmsURI
Wraps a URIImpl providing an internal id and version. |
| Methods in org.openrdf.sail.rdbms.model that return URI | |
|---|---|
URI |
RdbmsLiteral.getDatatype()
|
| Constructors in org.openrdf.sail.rdbms.model with parameters of type URI | |
|---|---|
RdbmsURI(Number id,
Integer version,
URI uri)
|
|
RdbmsURI(URI uri)
|
|
| Uses of URI in org.openrdf.workbench.util |
|---|
| Methods in org.openrdf.workbench.util that return URI | |
|---|---|
URI |
WorkbenchRequest.getURI(String name)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||