Uses of Interface
org.openrdf.model.URI

Packages that use URI
org.openrdf.http.client   
org.openrdf.http.protocol   
org.openrdf.http.protocol.transaction.operations   
org.openrdf.http.server   
org.openrdf.http.webclient   
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. 
org.openrdf.query Interfaces and classes for handling queries and query results. 
org.openrdf.query.algebra.evaluation   
org.openrdf.query.dawg Functionality to convert tuple query results to and from the Data Access Working Group Test Result Set RDF Vocabulary 
org.openrdf.query.impl   
org.openrdf.query.parser.sparql.ast   
org.openrdf.repository The Repository API: the main API for handling Sesame repositories. 
org.openrdf.repository.base   
org.openrdf.repository.config   
org.openrdf.repository.dataset   
org.openrdf.repository.event   
org.openrdf.repository.event.base   
org.openrdf.repository.http.config   
org.openrdf.repository.sail Repository implementation for local storage backends. 
org.openrdf.repository.sail.config   
org.openrdf.rio.helpers Provides helpers classes for Rio. 
org.openrdf.rio.ntriples Parser and writer for RDF in N-Triples format. 
org.openrdf.rio.trig Parser and writer for RDF in TriG format. 
org.openrdf.rio.turtle Parser and writer for RDF in Turtle format. 
org.openrdf.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API for RDF repositories. 
org.openrdf.sail.config   
org.openrdf.sail.helpers Generic utility classes for RDF Sail implementations. 
org.openrdf.sail.inferencer   
org.openrdf.sail.memory An implementation of the RDF SAIL API that uses main memory for storage. 
org.openrdf.sail.memory.config   
org.openrdf.sail.memory.model Classes implementing the storage model of the MemoryStore. 
org.openrdf.sail.nativerdf Native RDF storage backend. 
org.openrdf.sail.nativerdf.config   
org.openrdf.sail.nativerdf.model   
 

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.parseURIParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
 

Uses of URI in org.openrdf.http.webclient
 

Methods in org.openrdf.http.webclient that return URI
 URI StatementSpecification.getPredicate()
           
 

Methods in org.openrdf.http.webclient with parameters of type URI
 void StatementSpecification.setPredicate(URI predicate)
           
 

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)
           
 

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 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 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 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 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 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 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 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 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 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 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 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 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 OWL.SYMMETRICPROPERTY
          http://www.w3.org/2002/07/owl#SymmetricProperty
static URI XMLSchema.TIME
          http://www.w3.org/2001/XMLSchema#time
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 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
 

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.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.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.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)
           
 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)
           
 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.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.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 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 each context in the specified contexts.
 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... context)
          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
<X extends Exception>
CloseableIteration<MemStatement,X>
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)
           
 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)
           
 MemURI MemValueFactory.createMemURI(URI uri)
          See createMemValue() for description.
 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.
 

Constructors in org.openrdf.sail.memory.model with parameters of type URI
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)
           
 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.TRIPLE_INDEXES
          http://www.openrdf.org/config/sail/native#tripleIndexes
 

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 id)
           
 



Copyright © 2001-2007 Aduna. All Rights Reserved.