Uses of Interface
org.apache.jena.riot.system.PrefixMap
Packages that use PrefixMap
Package
Description
In-memory, transactional dataset
-
Uses of PrefixMap in org.apache.jena.riot
Methods in org.apache.jena.riot with parameters of type PrefixMapModifier and TypeMethodDescriptionSet an initial prefix map for parsing.voidWriterDatasetRIOT.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) voidWriterDatasetRIOT.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) Use of Writer is discouraged - let the serializer manage character sets in accordance with the formatvoidWriterGraphRIOT.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidWriterGraphRIOT.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) Use of Writer is discouraged - let the serializer manage character sets in accordance with the format -
Uses of PrefixMap in org.apache.jena.riot.adapters
Methods in org.apache.jena.riot.adapters with parameters of type PrefixMapModifier and TypeMethodDescriptionvoidAdapterRDFWriter.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidAdapterRDFWriter.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) -
Uses of PrefixMap in org.apache.jena.riot.lang
Methods in org.apache.jena.riot.lang that return PrefixMapModifier and TypeMethodDescriptionCollectorStreamBase.getPrefixes()Deprecated.CollectorStreamRDF.getPrefixes() -
Uses of PrefixMap in org.apache.jena.riot.out
Methods in org.apache.jena.riot.out with parameters of type PrefixMapModifier and TypeMethodDescriptionstatic StringFormat in Turtle style, using the base URI and prefix map.static StringFormat in Turtle style, using the prefix map.Constructors in org.apache.jena.riot.out with parameters of type PrefixMapModifierConstructorDescriptionNodeFormatterTTL(String baseIRI, PrefixMap prefixMap) NodeFormatterTTL(String baseIRI, PrefixMap prefixMap, NodeToLabel nodeToLabel) NodeFormatterTTL_MultiLine(String baseIRI, PrefixMap prefixMap) NodeFormatterTTL_MultiLine(String baseIRI, PrefixMap prefixMap, NodeToLabel nodeToLabel) -
Uses of PrefixMap in org.apache.jena.riot.protobuf
Methods in org.apache.jena.riot.protobuf with parameters of type PrefixMapModifier and TypeMethodDescriptionstatic QuadProtobufConvert.convert(org.apache.jena.atlas.lib.Cache<String, org.apache.jena.graph.Node> uriCache, PB_RDF.RDF_Quad rq, PrefixMap pmap) static org.apache.jena.graph.NodeProtobufConvert.convert(org.apache.jena.atlas.lib.Cache<String, org.apache.jena.graph.Node> uriCache, PB_RDF.RDF_Term term, PrefixMap pmap) Build aNodefrom anPB_RDF.RDF_Termusing a prefix map which must agree with the map used to create theRDF_Termin the first place.static org.apache.jena.graph.TripleProtobufConvert.convert(org.apache.jena.atlas.lib.Cache<String, org.apache.jena.graph.Node> uriCache, PB_RDF.RDF_Triple rt, PrefixMap pmap) static PB_RDF.RDF_Termstatic PB_RDF.RDF_Triplestatic QuadProtobufConvert.convert(PB_RDF.RDF_Quad rq, PrefixMap pmap) static org.apache.jena.graph.NodeProtobufConvert.convert(PB_RDF.RDF_Term term, PrefixMap pmap) Build aNodefrom anPB_RDF.RDF_Termusing a prefix map which must agree with the map used to create theRDF_Termin the first place.static org.apache.jena.graph.TripleProtobufConvert.convert(PB_RDF.RDF_Triple rt, PrefixMap pmap) static PB_RDF.RDF_Quadstatic PB_RDF.RDF_TermProtobufConvert.toProtobuf(org.apache.jena.graph.Node node, PrefixMap pmap, PB_RDF.RDF_Term.Builder termBuilder, boolean allowValues) Encode aNodeinto anPB_RDF.RDF_TermvoidWriterDatasetProtobuf.write(OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context) voidWriterDatasetProtobuf.write(Writer out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context) voidWriterGraphProtobuf.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidWriterGraphProtobuf.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) Constructors in org.apache.jena.riot.protobuf with parameters of type PrefixMap -
Uses of PrefixMap in org.apache.jena.riot.system
Classes in org.apache.jena.riot.system that implement PrefixMapModifier and TypeClassDescriptionfinal classProvidedPrefixMapfor aPrefixMapping.classAbstract base implementation of aPrefixMapwhich provides some implementations of API methods.classBase of always empty prefix mapsPrefixMapSinkandPrefixMapZero.classDelay touching theDatasetGraph.prefixes()until an operation (method call) happens.classEmpty prefix map that throws away updates.classIn-memory implementation of aPrefixMap.classA PrefixMap that traps update operations on a wrapped prefix mapclassclassAlways empty, immutable prefix mapFields in org.apache.jena.riot.system declared as PrefixMapModifier and TypeFieldDescriptionstatic PrefixMapPrefixMapZero.emptystatic PrefixMapPrefixMapSink.sinkMethods in org.apache.jena.riot.system that return PrefixMapModifier and TypeMethodDescriptionstatic PrefixMapPrefixes.adapt(org.apache.jena.graph.Graph graph) Provide, via an adapter if necessary, thePrefixMapfor aGraph.static PrefixMapPrefixes.adapt(org.apache.jena.shared.PrefixMapping prefixMapping) Apply a wrapper to aPrefixMappingto provide thePrefixMapAPI.static PrefixMapPrefixMapFactory.create()Creates a new prefix map.static PrefixMapCreates a new prefix map,initialized from a Map of prefix to IRI string.static PrefixMapCreates a new prefix map which starts with a copy of an existing prefix map.static PrefixMapPrefixMapFactory.create(org.apache.jena.shared.PrefixMapping pmap) Creates a new prefix map which starts with a copy of an existing map.static PrefixMapPrefixMapFactory.createForOutput()Creates a new prefix map which is intended for use in outputstatic PrefixMapPrefixMapFactory.createForOutput(Map<String, String> pmap) Creates a new prefix map, initialized from a Map of prefix to IRI string.static PrefixMapPrefixMapFactory.createForOutput(PrefixMap pmap) Creates a new prefix map which is intended for use in output which starts with a copy of an existing mapstatic PrefixMapPrefixMapFactory.createForOutput(org.apache.jena.shared.PrefixMapping prefixMapping) Creates a new prefix map which is intended for use in output which starts with a copy of an existing map.static PrefixMapPrefixes.emptyPrefixMap()static PrefixMapPrefixMapFactory.emptyPrefixMap()Return an always-empty and immutable prefix mapParserProfile.getPrefixMap()ParserProfileStd.getPrefixMap()ParserProfileWrapper.getPrefixMap()static PrefixMapPrefixMapFactory.unmodifiablePrefixMap(PrefixMap pmap) Return an immutable view of the prefix map.Methods in org.apache.jena.riot.system with parameters of type PrefixMapModifier and TypeMethodDescriptionAbbreviate a uriStr, return the prefix and local parts.static StringPrefixLib.abbreviate(PrefixMap prefixes, String uriStr) Abbreviate a uriStr, giving a string as a short form.static org.apache.jena.shared.PrefixMappingApply a wrapper to aPrefixMapto provide thePrefixMappingAPI.static PrefixMapCreates a new prefix map which starts with a copy of an existing prefix map.static PrefixMapPrefixMapFactory.createForOutput(PrefixMap pmap) Creates a new prefix map which is intended for use in output which starts with a copy of an existing mapstatic StringExpand a prefixedName which must include a ':'static StringExpand a prefix, local name pair.static StringReverse lookup of URI to a prefix.voidAdd a prefix, overwrites any existing associationvoidvoidvoidvoidvoidstatic voidStreamRDFOps.sendDatasetToStream(DatasetGraph datasetGraph, StreamRDF stream, String baseURI, PrefixMap prefixMap) Send a dataset to a StreamRDF as triples and quads, using the explicitly given prefix mapstatic voidStreamRDFOps.sendGraphToStream(org.apache.jena.graph.Graph graph, StreamRDF stream, String baseURI, PrefixMap prefixMap) Send the triples of graph, and an explicitly given prefix mapping, to a StreamRDFstatic voidStreamRDFOps.sendPrefixesToStream(PrefixMap prefixMap, StreamRDF stream) Send a PrefixMap to a streamstatic StringCalculate a printable multi-line string.static PrefixMapPrefixMapFactory.unmodifiablePrefixMap(PrefixMap pmap) Return an immutable view of the prefix map.static voidRiotLib.writePrefixes(org.apache.jena.atlas.io.IndentedWriter out, PrefixMap prefixMap) static voidRiotLib.writePrefixes(org.apache.jena.atlas.io.IndentedWriter out, PrefixMap prefixMap, DirectiveStyle writeStyle) Write prefixesConstructors in org.apache.jena.riot.system with parameters of type PrefixMapModifierConstructorDescriptionCDTAwareParserProfile(FactoryRDF factory, ErrorHandler errorHandler, org.apache.jena.irix.IRIxResolver resolver, PrefixMap prefixMap, Context context, boolean checking, boolean strictMode) ParserProfileStd(FactoryRDF factory, ErrorHandler errorHandler, org.apache.jena.irix.IRIxResolver resolver, PrefixMap prefixMap, Context context, boolean checking, boolean strictMode) PrefixMapStd(PrefixMap prefixMap) Creates a new prefix mapping copied from an existing mapPrefixMapUnmodifiable(PrefixMap other) PrefixMapWrapper(PrefixMap other) StreamRDFCollectOne(PrefixMap pmap) -
Uses of PrefixMap in org.apache.jena.riot.thrift
Methods in org.apache.jena.riot.thrift with parameters of type PrefixMapModifier and TypeMethodDescriptionstatic QuadThriftConvert.convert(org.apache.jena.atlas.lib.Cache<String, org.apache.jena.graph.Node> uriCache, RDF_Quad rq, PrefixMap pmap) static org.apache.jena.graph.NodeThriftConvert.convert(org.apache.jena.atlas.lib.Cache<String, org.apache.jena.graph.Node> uriCache, RDF_Term term, PrefixMap pmap) Build aNodefrom anRDF_Termusing a prefix map which must agree with the map used to create theRDF_Termin the first place.static org.apache.jena.graph.TripleThriftConvert.convert(org.apache.jena.atlas.lib.Cache<String, org.apache.jena.graph.Node> uriCache, RDF_Triple rt, PrefixMap pmap) static RDF_Termstatic RDF_Triplestatic Quadstatic org.apache.jena.graph.NodeBuild aNodefrom anRDF_Term.static org.apache.jena.graph.TripleThriftConvert.convert(RDF_Triple rt, PrefixMap pmap) static RDF_Quadstatic voidThriftConvert.toThrift(org.apache.jena.graph.Node node, PrefixMap pmap, RDF_Term term, boolean allowValues) Encode aNodeinto anRDF_TermvoidWriterDatasetThrift.write(OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context) voidWriterDatasetThrift.write(Writer out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context) voidWriterGraphThrift.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidWriterGraphThrift.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) Constructors in org.apache.jena.riot.thrift with parameters of type PrefixMap -
Uses of PrefixMap in org.apache.jena.riot.tokens
Methods in org.apache.jena.riot.tokens with parameters of type PrefixMap -
Uses of PrefixMap in org.apache.jena.riot.writer
Methods in org.apache.jena.riot.writer with parameters of type PrefixMapModifier and TypeMethodDescriptionstatic NodeFormatterTurtleShell.createNodeFormatter(PrefixMap pmap, String baseURI, Context context) voidJsonLD11Writer.write(OutputStream outputStream, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) voidJsonLD11Writer.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) voidNQuadsWriter.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context) voidNQuadsWriter.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context) voidNTriplesWriter.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidNTriplesWriter.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidNullWriter.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) voidNullWriter.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) voidRDFJSONWriter.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidRDFJSONWriter.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidTriGWriterBase.write(OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context) voidTriGWriterBase.write(Writer out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context) voidTurtleWriterBase.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidTurtleWriterBase.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) abstract voidWriterDatasetRIOTBase.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context) abstract voidWriterDatasetRIOTBase.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context) abstract voidWriterGraphRIOTBase.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) abstract voidWriterGraphRIOTBase.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidWriterTriX.write(OutputStream out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidWriterTriX.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) voidWriterTriX.write(Writer out, org.apache.jena.graph.Graph graph, PrefixMap prefixMap, String baseURI, Context context) voidWriterTriX.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context) Constructors in org.apache.jena.riot.writer with parameters of type PrefixMap -
Uses of PrefixMap in org.apache.jena.sparql.core
Methods in org.apache.jena.sparql.core that return PrefixMap -
Uses of PrefixMap in org.apache.jena.sparql.core.mem
Methods in org.apache.jena.sparql.core.mem that return PrefixMap -
Uses of PrefixMap in org.apache.jena.sparql.engine.binding
Methods in org.apache.jena.sparql.engine.binding that return PrefixMapMethods in org.apache.jena.sparql.engine.binding with parameters of type PrefixMapConstructors in org.apache.jena.sparql.engine.binding with parameters of type PrefixMapModifierConstructorDescriptionBindingOutputStream(OutputStream out, List<Var> vars, PrefixMap prefixMapping) BindingOutputStream(OutputStream out, PrefixMap prefixMapping) -
Uses of PrefixMap in org.apache.jena.sparql.exec
Methods in org.apache.jena.sparql.exec with parameters of type PrefixMapModifier and TypeMethodDescriptionstatic voidRowSetOps.out(OutputStream out, RowSet resultSet, PrefixMap pmap) Output a result set in a text format. -
Uses of PrefixMap in org.apache.jena.sparql.graph
Methods in org.apache.jena.sparql.graph that return PrefixMapConstructors in org.apache.jena.sparql.graph with parameters of type PrefixMap -
Uses of PrefixMap in org.apache.jena.sparql.util
Methods in org.apache.jena.sparql.util that return PrefixMapMethods in org.apache.jena.sparql.util with parameters of type PrefixMap -
Uses of PrefixMap in org.apache.jena.system.buffering
Classes in org.apache.jena.system.buffering that implement PrefixMapModifier and TypeClassDescriptionclassAPrefixMapthat buffers changes untilBufferingPrefixMap.flush()is called.Methods in org.apache.jena.system.buffering that return PrefixMapConstructors in org.apache.jena.system.buffering with parameters of type PrefixMap