Uses of Interface
org.eclipse.rdf4j.model.Namespace
-
Packages that use Namespace Package Description org.eclipse.rdf4j.model The RDF Model APIorg.eclipse.rdf4j.model.base Abstract base classes for RDF Model API interfaces.org.eclipse.rdf4j.model.impl Default implementations of the RDF model interfacesorg.eclipse.rdf4j.model.util Helper classes for working with RDF models.org.eclipse.rdf4j.model.vocabulary Re-usable constants for various well-known RDF vocabularies.org.eclipse.rdf4j.query.parser.sparql The rdf4j SPARQL 1.1 parser.org.eclipse.rdf4j.repository The Repository API: the main API for accessing rdf databases and SPARQL endpoints.org.eclipse.rdf4j.repository.base Abstract base classes and wrappers for the main Repository API interfaces.org.eclipse.rdf4j.repository.http A repository that serves as a proxy client for a remote repository on an RDF4J Server.org.eclipse.rdf4j.repository.sail Repository implementation for local RDF databases that implement the SAIL SPI.org.eclipse.rdf4j.repository.sparql ARepositorythat serves as a SPARQL endpoint client.org.eclipse.rdf4j.rio.helpers Provides helpers classes for Rio.org.eclipse.rdf4j.rio.jsonld Parser/writer for the JSON-L format.org.eclipse.rdf4j.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.org.eclipse.rdf4j.sail.base Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).org.eclipse.rdf4j.sail.helpers Abstract base implementation and internal helper classes for Sail implementations.org.eclipse.rdf4j.sail.memory An implementation of the RDF SAIL API that uses main memory for storage.org.eclipse.rdf4j.sail.model org.eclipse.rdf4j.sail.shacl.ast org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents org.eclipse.rdf4j.sail.shacl.ast.paths org.eclipse.rdf4j.sail.shacl.ast.targets org.eclipse.rdf4j.sparqlbuilder.core Core classes and interfaces for the SPARQLBuilder.org.eclipse.rdf4j.sparqlbuilder.core.query -
-
Uses of Namespace in org.eclipse.rdf4j.model
Classes in org.eclipse.rdf4j.model that implement Namespace Modifier and Type Class Description (package private) classModelNamespaceMethods in org.eclipse.rdf4j.model that return Namespace Modifier and Type Method Description default NamespaceModel. setNamespace(java.lang.String prefix, java.lang.String name)Sets the prefix for a namespace.Methods in org.eclipse.rdf4j.model that return types with arguments of type Namespace Modifier and Type Method Description default java.util.Optional<Namespace>NamespaceAware. getNamespace(java.lang.String prefix)Gets the namespace that is associated with the specified prefix, if any.java.util.Set<Namespace>NamespaceAware. getNamespaces()Gets the set that contains the assigned namespaces.java.util.Optional<Namespace>Model. removeNamespace(java.lang.String prefix)Removes a namespace declaration by removing the association between a prefix and a namespace name.Methods in org.eclipse.rdf4j.model with parameters of type Namespace Modifier and Type Method Description voidModel. setNamespace(Namespace namespace)Sets the prefix for a namespace. -
Uses of Namespace in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement Namespace Modifier and Type Class Description classAbstractNamespaceBase class forNamespace, offering common functionality.Fields in org.eclipse.rdf4j.model.base with type parameters of type Namespace Modifier and Type Field Description private static java.util.Comparator<Namespace>AbstractNamespace. COMPARATORMethods in org.eclipse.rdf4j.model.base with parameters of type Namespace Modifier and Type Method Description intAbstractNamespace. compareTo(Namespace o) -
Uses of Namespace in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl that implement Namespace Modifier and Type Class Description classSimpleNamespaceA default implementation of theNamespaceinterface.Fields in org.eclipse.rdf4j.model.impl with type parameters of type Namespace Modifier and Type Field Description (package private) java.util.Set<Namespace>DynamicModel. namespaces(package private) java.util.Set<Namespace>LinkedHashModel. namespaces(package private) java.util.Set<Namespace>TreeModel. namespacesMethods in org.eclipse.rdf4j.model.impl that return Namespace Modifier and Type Method Description NamespaceDynamicModel. setNamespace(java.lang.String prefix, java.lang.String name)NamespaceEmptyModel. setNamespace(java.lang.String prefix, java.lang.String name)NamespaceFilteredModel. setNamespace(java.lang.String prefix, java.lang.String name)NamespaceLinkedHashModel. setNamespace(java.lang.String prefix, java.lang.String name)NamespaceTreeModel. setNamespace(java.lang.String prefix, java.lang.String name)NamespaceTreeModel.SubSet. setNamespace(java.lang.String prefix, java.lang.String name)NamespaceUnmodifiableModel. setNamespace(java.lang.String prefix, java.lang.String name)Methods in org.eclipse.rdf4j.model.impl that return types with arguments of type Namespace Modifier and Type Method Description java.util.Optional<Namespace>DynamicModel. getNamespace(java.lang.String prefix)java.util.Optional<Namespace>EmptyModel. getNamespace(java.lang.String prefix)java.util.Optional<Namespace>FilteredModel. getNamespace(java.lang.String prefix)java.util.Optional<Namespace>LinkedHashModel. getNamespace(java.lang.String prefix)java.util.Optional<Namespace>TreeModel. getNamespace(java.lang.String prefix)java.util.Optional<Namespace>TreeModel.SubSet. getNamespace(java.lang.String prefix)java.util.Optional<Namespace>UnmodifiableModel. getNamespace(java.lang.String prefix)java.util.Set<Namespace>DynamicModel. getNamespaces()java.util.Set<Namespace>EmptyModel. getNamespaces()java.util.Set<Namespace>FilteredModel. getNamespaces()java.util.Set<Namespace>LinkedHashModel. getNamespaces()java.util.Set<Namespace>TreeModel. getNamespaces()java.util.Set<Namespace>TreeModel.SubSet. getNamespaces()java.util.Set<Namespace>UnmodifiableModel. getNamespaces()java.util.Optional<Namespace>DynamicModel. removeNamespace(java.lang.String prefix)java.util.Optional<Namespace>EmptyModel. removeNamespace(java.lang.String prefix)java.util.Optional<Namespace>FilteredModel. removeNamespace(java.lang.String prefix)java.util.Optional<Namespace>LinkedHashModel. removeNamespace(java.lang.String prefix)java.util.Optional<Namespace>TreeModel. removeNamespace(java.lang.String prefix)java.util.Optional<Namespace>TreeModel.SubSet. removeNamespace(java.lang.String prefix)java.util.Optional<Namespace>UnmodifiableModel. removeNamespace(java.lang.String prefix)Methods in org.eclipse.rdf4j.model.impl with parameters of type Namespace Modifier and Type Method Description voidDynamicModel. setNamespace(Namespace namespace)voidEmptyModel. setNamespace(Namespace namespace)voidFilteredModel. setNamespace(Namespace namespace)voidLinkedHashModel. setNamespace(Namespace namespace)voidTreeModel. setNamespace(Namespace namespace)voidTreeModel.SubSet. setNamespace(Namespace namespace)voidUnmodifiableModel. setNamespace(Namespace name)Constructor parameters in org.eclipse.rdf4j.model.impl with type arguments of type Namespace Constructor Description LinkedHashModel(java.util.Set<Namespace> namespaces)LinkedHashModel(java.util.Set<Namespace> namespaces, int size)LinkedHashModel(java.util.Set<Namespace> namespaces, java.util.Collection<? extends Statement> c)TreeModel(java.util.Set<Namespace> namespaces)TreeModel(java.util.Set<Namespace> namespaces, java.util.Collection<? extends Statement> c) -
Uses of Namespace in org.eclipse.rdf4j.model.util
Fields in org.eclipse.rdf4j.model.util with type parameters of type Namespace Modifier and Type Field Description static java.util.Set<Namespace>Namespaces. DEFAULT_RDF4JRDFa initial namespaces + additional set of prefixes for RDF4Jstatic java.util.Set<Namespace>Namespaces. DEFAULT_RDFA11Set of RDFa 1.1 "initial context" namespacesMethods in org.eclipse.rdf4j.model.util that return Namespace Modifier and Type Method Description private Namespace[]ModelBuilder. getDefaultNamespaces()static NamespaceValues. namespace(java.lang.String prefix, java.lang.String name)Create a newNamespaceobject.NamespaceSynchronizedModel. setNamespace(java.lang.String prefix, java.lang.String name)Methods in org.eclipse.rdf4j.model.util that return types with arguments of type Namespace Modifier and Type Method Description java.util.Optional<Namespace>SynchronizedModel. getNamespace(java.lang.String prefix)java.util.Set<Namespace>SynchronizedModel. getNamespaces()java.util.Optional<Namespace>SynchronizedModel. removeNamespace(java.lang.String prefix)Methods in org.eclipse.rdf4j.model.util with parameters of type Namespace Modifier and Type Method Description static IRIValues. iri(Namespace namespace, java.lang.String localName)ModelBuilderModelBuilder. setNamespace(Namespace ns)Set the suppliedNamespacemapping.voidSynchronizedModel. setNamespace(Namespace namespace)Method parameters in org.eclipse.rdf4j.model.util with type arguments of type Namespace Modifier and Type Method Description static java.util.Map<java.lang.String,java.lang.String>Namespaces. asMap(java.util.Set<Namespace> namespaces)Converts a set ofNamespaces into a map containing thegetPrefix()strings as keys, with thegetName()strings as values in the map for each namespace in the given set.static IRIValues. iri(java.lang.Iterable<Namespace> namespaces, java.lang.String prefixedName)Create a newIRIfrom a supplied prefixed name, using the suppliednamespacesstatic java.util.Map<java.lang.String,java.lang.String>Namespaces. wrap(java.util.Set<Namespace> namespaces)Wraps the givenSetofNamespaces as aMapof prefix to URI mappings, so that it can be used where aMapis required by the API. -
Uses of Namespace in org.eclipse.rdf4j.model.vocabulary
Classes in org.eclipse.rdf4j.model.vocabulary that implement Namespace Modifier and Type Class Description private static classVocabularies.VocabularyNamespaceFields in org.eclipse.rdf4j.model.vocabulary declared as Namespace Modifier and Type Field Description static NamespaceCONFIG. NSThe RDF4J config namespace (tag:rdf4j.org,2023:config/) as aNamespaceobject.static NamespaceDASH. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceDC. NSAn immutableNamespaceconstant that represents the Dublin Core namespace.static NamespaceDCAT. NSAn immutableNamespaceconstant that represents the Data Catalog Vocabulary namespace.static NamespaceDCTERMS. NSAn immutableNamespaceconstant that represents the Dublin Core Terms namespace.static NamespaceDOAP. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceFN. NSAn immutableNamespaceconstant that represents the XPath Functions namespace.static NamespaceFOAF. NSAn immutableNamespaceconstant that represents the FOAF namespace.static NamespaceGEO. NSAn immutableNamespaceconstant that represents the GEO namespace.static NamespaceHYDRA. NSAn immutableNamespaceconstant that represents the HYDRA namespace.static NamespaceLDP. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceLOCN. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceODRL2. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceORG. NSAn immutableNamespaceconstant that represents the Organization namespace.static NamespaceOWL. NSAn immutableNamespaceconstant that represents the OWL namespace.static NamespacePROV. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceRDF. NSAn immutableNamespaceconstant that represents the RDF namespace.static NamespaceRDF4J. NSAn immutableNamespaceconstant that represents the RDF4J namespace.static NamespaceRDFS. NSAn immutableNamespaceconstant that represents the RDFS namespace.static NamespaceROV. NSAn immutableNamespaceconstant that represents the Registered Organization namespace.static NamespaceRSX. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceSD. NSAn immutableNamespaceconstant that represents the SPARQL Service Description namespace.static NamespaceSESAME. NSAn immutableNamespaceconstant that represents the Sesame Schema namespace.static NamespaceSESAMEQNAME. NSAn immutableNamespaceconstant that represents the Sesame QName namespace.static NamespaceSHACL. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceSKOS. NSAn immutableNamespaceconstant that represents the SKOS namespace.static NamespaceSKOSXL. NSAn immutableNamespaceconstant that represents the SKOS-XL namespace.static NamespaceTIME. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceVANN. NSAn immutableNamespaceconstant that represents the VANN namespace.static NamespaceVCARD4. NSAn immutableNamespaceconstant that represents the namespace.static NamespaceVOID. NSAn immutableNamespaceconstant that represents the VoID namespace.static NamespaceWGS84. NSAn immutableNamespaceconstant that represents the WGS84 namespace.static NamespaceXSD. NSAn immutableNamespaceconstant that represents the XML Schema namespace.Methods in org.eclipse.rdf4j.model.vocabulary that return Namespace Modifier and Type Method Description (package private) static NamespaceVocabularies. createNamespace(java.lang.String prefix, java.lang.String namespace) -
Uses of Namespace in org.eclipse.rdf4j.query.parser.sparql
Method parameters in org.eclipse.rdf4j.query.parser.sparql with type arguments of type Namespace Modifier and Type Method Description QueryParserSPARQLParserFactory. getParser(java.util.Set<Namespace> customPrefixes)static java.lang.StringSPARQLQueries. getPrefixClauses(java.lang.Iterable<Namespace> namespaces)Creates a string representing of the suppliednamespacesas SPARQL prefix declarations.Constructor parameters in org.eclipse.rdf4j.query.parser.sparql with type arguments of type Namespace Constructor Description SPARQLParser(java.util.Set<Namespace> customPrefixes)Create a new SPARQLParser. -
Uses of Namespace in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return types with arguments of type Namespace Modifier and Type Method Description RepositoryResult<Namespace>RepositoryConnection. getNamespaces()Gets all declared namespaces as a RepositoryResult ofNamespaceobjects. -
Uses of Namespace in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that return types with arguments of type Namespace Modifier and Type Method Description RepositoryResult<Namespace>RepositoryConnectionWrapper. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http that return types with arguments of type Namespace Modifier and Type Method Description RepositoryResult<Namespace>HTTPRepositoryConnection. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that return types with arguments of type Namespace Modifier and Type Method Description RepositoryResult<Namespace>SailRepositoryConnection. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that return types with arguments of type Namespace Modifier and Type Method Description RepositoryResult<Namespace>SPARQLConnection. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.rio.helpers
Fields in org.eclipse.rdf4j.rio.helpers with type parameters of type Namespace Modifier and Type Field Description static RioSetting<java.util.Set<Namespace>>BasicParserSettings. NAMESPACESSetting to provide a collection ofNamespaceobjects which will be used when parsing RDF as the basis for the default set of namespaces of the document. -
Uses of Namespace in org.eclipse.rdf4j.rio.jsonld
Method parameters in org.eclipse.rdf4j.rio.jsonld with type arguments of type Namespace Modifier and Type Method Description private static voidJSONLDWriter. addPrefixes(java.util.Map<java.lang.String,java.lang.Object> ctx, java.util.Set<Namespace> namespaces)Add name space prefixes to JSON-LD context, empty prefix gets the '@vocab' prefix -
Uses of Namespace in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail that return types with arguments of type Namespace Modifier and Type Method Description CloseableIteration<? extends Namespace,SailException>SailConnection. getNamespaces()Gets the namespaces relevant to the data contained in this Sail object. -
Uses of Namespace in org.eclipse.rdf4j.sail.base
Fields in org.eclipse.rdf4j.sail.base with type parameters of type Namespace Modifier and Type Field Description private static EmptyIteration<Namespace,SailException>SailDatasetImpl. NAMESPACES_EMPTY_ITERATIONMethods in org.eclipse.rdf4j.sail.base that return types with arguments of type Namespace Modifier and Type Method Description CloseableIteration<? extends Namespace,SailException>DelegatingSailDataset. getNamespaces()CloseableIteration<? extends Namespace,SailException>SailDataset. getNamespaces()Gets the namespaces relevant to the data contained in this object.CloseableIteration<? extends Namespace,SailException>SailDatasetImpl. getNamespaces()CloseableIteration<? extends Namespace,SailException>UnionSailDataset. getNamespaces()protected CloseableIteration<? extends Namespace,SailException>SailSourceConnection. getNamespacesInternal() -
Uses of Namespace in org.eclipse.rdf4j.sail.helpers
Methods in org.eclipse.rdf4j.sail.helpers that return types with arguments of type Namespace Modifier and Type Method Description CloseableIteration<? extends Namespace,SailException>AbstractSailConnection. getNamespaces()CloseableIteration<? extends Namespace,SailException>SailConnectionWrapper. getNamespaces()protected abstract CloseableIteration<? extends Namespace,SailException>AbstractSailConnection. getNamespacesInternal() -
Uses of Namespace in org.eclipse.rdf4j.sail.memory
Methods in org.eclipse.rdf4j.sail.memory that return types with arguments of type Namespace Modifier and Type Method Description CloseableIteration<? extends Namespace,SailException>MemorySailStore.MemorySailDataset. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.sail.model
Methods in org.eclipse.rdf4j.sail.model that return Namespace Modifier and Type Method Description NamespaceSailModel. setNamespace(java.lang.String prefix, java.lang.String name)Methods in org.eclipse.rdf4j.sail.model that return types with arguments of type Namespace Modifier and Type Method Description java.util.Optional<Namespace>SailModel. getNamespace(java.lang.String prefix)java.util.Set<Namespace>SailModel. getNamespaces()java.util.Optional<Namespace>SailModel. removeNamespace(java.lang.String prefix)Methods in org.eclipse.rdf4j.sail.model with parameters of type Namespace Modifier and Type Method Description voidSailModel. setNamespace(Namespace namespace) -
Uses of Namespace in org.eclipse.rdf4j.sail.shacl.ast
Fields in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type Namespace Modifier and Type Field Description private java.util.Set<Namespace>ShaclPrefixParser.Namespaces. namespacesprivate java.util.Set<Namespace>SparqlFragment. namespacesprivate java.util.Set<Namespace>ValidationQuery. namespacesMethods in org.eclipse.rdf4j.sail.shacl.ast that return types with arguments of type Namespace Modifier and Type Method Description java.util.Set<Namespace>ShaclPrefixParser.Namespaces. getNamespaces()java.util.Set<Namespace>Targetable. getNamespaces()Method parameters in org.eclipse.rdf4j.sail.shacl.ast with type arguments of type Namespace Modifier and Type Method Description static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String fragment)static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String query, boolean supportsIncrementalEvaluation)static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String fragment, java.util.List<StatementMatcher> statementMatchers)static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String fragment, java.util.List<StatementMatcher> statementMatchers, SparqlFragment.TraceBack traceBackFunction)static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String fragment, java.util.List<StatementMatcher> statementMatchers, SparqlFragment.TraceBack traceBackFunction, boolean supportsIncrementalEvaluation)static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String fragment, StatementMatcher statementMatcher)static SparqlFragmentSparqlFragment. bgp(java.util.Collection<Namespace> namespaces, java.lang.String fragment, StatementMatcher statementMatcher, SparqlFragment.TraceBack traceBackFunction)static SparqlFragmentSparqlFragment. filterCondition(java.util.Collection<Namespace> namespaces, java.lang.String fragment, java.util.List<StatementMatcher> statementMatchers)static SparqlFragmentSparqlFragment. filterCondition(java.util.Collection<Namespace> namespaces, java.lang.String fragment, java.util.List<StatementMatcher> statementMatchers, boolean supportsIncrementalEvaluation)static java.lang.StringShaclPrefixParser. toSparqlPrefixes(java.util.Collection<Namespace> namespaces)static SparqlFragmentSparqlFragment. unionQueryStrings(java.util.Set<Namespace> namespaces, java.lang.String query1, java.lang.String query2, java.lang.String query3, boolean supportsIncrementalEvaluation)static SparqlFragmentSparqlFragment. unionQueryStrings(java.util.Set<Namespace> namespaces, java.util.List<java.lang.String> query, SparqlFragment.TraceBack traceBackFunction, boolean supportsIncrementalEvaluation)Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast with type arguments of type Namespace Constructor Description SparqlFragment(java.util.Collection<Namespace> namespaces, java.lang.String fragment, boolean filterCondition, boolean bgp, java.util.List<StatementMatcher> statementMatchers, SparqlFragment.TraceBack traceBackFunction, boolean supportsIncrementalEvaluation)SparqlFragment(java.util.Collection<Namespace> namespaces, java.util.List<java.lang.String> unionFragments, java.util.List<StatementMatcher> statementMatchers, SparqlFragment.TraceBack traceBackFunction, boolean supportsIncrementalEvaluation)ValidationQuery(java.util.Collection<Namespace> namespaces, java.lang.String query, java.util.List<StatementMatcher.Variable<Value>> targets, StatementMatcher.Variable<Value> value, ConstraintComponent.Scope scope, ConstraintComponent constraintComponent, Severity severity, Shape shape)ValidationQuery(java.util.Set<Namespace> namespaces, java.lang.String query, ConstraintComponent.Scope scope, java.util.List<StatementMatcher.Variable<Value>> variables, int targetIndex, int valueIndex) -
Uses of Namespace in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type parameters of type Namespace Modifier and Type Field Description private java.util.Set<Namespace>SparqlConstraintComponent. namespacesConstructor parameters in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type arguments of type Namespace Constructor Description SparqlConstraintComponent(Resource id, Shape shape, boolean produceValidationReports, java.lang.String select, java.lang.String originalSelect, java.util.List<Literal> message, java.lang.Boolean deactivated, java.util.Set<Namespace> namespaces, Model prefixes) -
Uses of Namespace in org.eclipse.rdf4j.sail.shacl.ast.paths
Methods in org.eclipse.rdf4j.sail.shacl.ast.paths that return types with arguments of type Namespace Modifier and Type Method Description java.util.Set<Namespace>Path. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.sail.shacl.ast.targets
Fields in org.eclipse.rdf4j.sail.shacl.ast.targets with type parameters of type Namespace Modifier and Type Field Description private java.util.Set<Namespace>SparqlTarget. namespacesMethods in org.eclipse.rdf4j.sail.shacl.ast.targets that return types with arguments of type Namespace Modifier and Type Method Description java.util.Set<Namespace>DashAllObjects. getNamespaces()java.util.Set<Namespace>DashAllSubjects. getNamespaces()java.util.Set<Namespace>RSXTargetShape. getNamespaces()java.util.Set<Namespace>SparqlTarget. getNamespaces()java.util.Set<Namespace>TargetChain. getNamespaces()java.util.Set<Namespace>TargetClass. getNamespaces()java.util.Set<Namespace>TargetNode. getNamespaces()java.util.Set<Namespace>TargetObjectsOf. getNamespaces()java.util.Set<Namespace>TargetSubjectsOf. getNamespaces() -
Uses of Namespace in org.eclipse.rdf4j.sparqlbuilder.core
Methods in org.eclipse.rdf4j.sparqlbuilder.core with parameters of type Namespace Modifier and Type Method Description static PrefixSparqlBuilder. prefix(Namespace namespace)Create SPARQL Prefix declaration from the givenNamespace. -
Uses of Namespace in org.eclipse.rdf4j.sparqlbuilder.core.query
Methods in org.eclipse.rdf4j.sparqlbuilder.core.query with parameters of type Namespace Modifier and Type Method Description TOuterQuery. prefix(Namespace... namespaces)Add prefix declarations to this queryTUpdateQuery. prefix(Namespace... namespaces)Add prefix declarations to this query
-