Uses of Interface
org.eclipse.rdf4j.model.ModelFactory
Packages that use ModelFactory
Package
Description
Default implementations of the RDF model interfaces
Helper classes for working with RDF models.
Interfaces and classes for handling queries and query results.
Functionality for Repository lifecycle management and sharing.
A
Repository
that serves as a SPARQL endpoint client.Rio: The RDF4J parser/writer API.
Provides helpers classes for Rio.
Parser/writer for the Turtle format.
Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).
-
Uses of ModelFactory in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl that implement ModelFactoryModifier and TypeClassDescriptionclass
CreatesDynamicModel
.class
CreatesLinkedHashModel
.class
CreatesTreeModel
.Fields in org.eclipse.rdf4j.model.impl declared as ModelFactoryConstructors in org.eclipse.rdf4j.model.impl with parameters of type ModelFactory -
Uses of ModelFactory in org.eclipse.rdf4j.model.util
Fields in org.eclipse.rdf4j.model.util declared as ModelFactoryMethods in org.eclipse.rdf4j.model.util with parameters of type ModelFactoryModifier and TypeMethodDescriptionstatic Model
Models.convertRDFStarToReification
(ValueFactory vf, Model model, ModelFactory modelFactory) Converts the statements in supplied RDF-star model to a new RDF model using reificiation.static Model
Models.convertReificationToRDFStar
(ValueFactory vf, Model model, ModelFactory modelFactory) Converts the statements in supplied RDF reification model to a new RDF-star model.Constructors in org.eclipse.rdf4j.model.util with parameters of type ModelFactory -
Uses of ModelFactory in org.eclipse.rdf4j.query
Methods in org.eclipse.rdf4j.query with parameters of type ModelFactoryModifier and TypeMethodDescriptionstatic Model
QueryResults.asModel
(CloseableIteration<? extends Statement, ? extends RDF4JException> iteration, ModelFactory modelFactory) Get aModel
containing all elements obtained from the specified query result. -
Uses of ModelFactory in org.eclipse.rdf4j.repository.manager
Fields in org.eclipse.rdf4j.repository.manager declared as ModelFactoryMethods in org.eclipse.rdf4j.repository.manager that return ModelFactoryModifier and TypeMethodDescriptionRepositoryManager.getModelFactory()
Get theModelFactory
used for creating newModel
objects in the manager.Methods in org.eclipse.rdf4j.repository.manager with parameters of type ModelFactoryModifier and TypeMethodDescriptionvoid
RepositoryManager.setModelFactory
(ModelFactory modelFactory) Set theModelFactory
to use for creating newModel
objects in the manager. -
Uses of ModelFactory in org.eclipse.rdf4j.repository.sparql
Fields in org.eclipse.rdf4j.repository.sparql declared as ModelFactoryMethods in org.eclipse.rdf4j.repository.sparql that return ModelFactory -
Uses of ModelFactory in org.eclipse.rdf4j.rio
Methods in org.eclipse.rdf4j.rio with parameters of type ModelFactoryModifier and TypeMethodDescriptionstatic Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(Reader reader, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts) -
Uses of ModelFactory in org.eclipse.rdf4j.rio.helpers
Fields in org.eclipse.rdf4j.rio.helpers declared as ModelFactoryMethods in org.eclipse.rdf4j.rio.helpers that return ModelFactoryConstructors in org.eclipse.rdf4j.rio.helpers with parameters of type ModelFactoryModifierConstructorDescriptionRDFHandlerWrapper
(ModelFactory modelFactory, RDFHandler... rdfHandlers) Creates a new RDFHandlerWrapper that wraps the supplied RDF handler(s). -
Uses of ModelFactory in org.eclipse.rdf4j.rio.turtle
Fields in org.eclipse.rdf4j.rio.turtle declared as ModelFactoryMethods in org.eclipse.rdf4j.rio.turtle that return ModelFactoryMethods in org.eclipse.rdf4j.rio.turtle with parameters of type ModelFactoryModifier and TypeMethodDescriptionvoid
TurtleWriter.setModelFactory
(ModelFactory modelFactory) Set aModelFactory
to use for creating internal Models for statement processing/buffering purposes. -
Uses of ModelFactory in org.eclipse.rdf4j.sail.base
Classes in org.eclipse.rdf4j.sail.base that implement ModelFactoryModifier and TypeClassDescriptionclass
Set of changes applied to anSailSourceBranch
awaiting to be flushed into its backingSailSource
.Fields in org.eclipse.rdf4j.sail.base declared as ModelFactoryModifier and TypeFieldDescriptionprivate final ModelFactory
SailSourceBranch.modelFactory
TheModel
instances that should be used to storeSailSink.approve(Resource, IRI, Value, Resource)
andSailSink.deprecate(Resource, IRI, Value, Resource)
statements.Constructors in org.eclipse.rdf4j.sail.base with parameters of type ModelFactoryModifierConstructorDescriptionSailSourceBranch
(SailSource backingSource, ModelFactory modelFactory) Creates a newSailSource
derived from the givenSailSource
.SailSourceBranch
(SailSource backingSource, ModelFactory modelFactory, boolean autoFlush) Creates a newSailSource
derived from the givenSailSource
and ifautoFlush
is true, will automatically callSailSourceBranch.flush()
when not in use.SnapshotSailStore
(SailStore backingStore, ModelFactory modelFactory) Wraps anSailStore
, tracking changes inModelFactory
instances.