Uses of Interface
org.apache.jena.riot.system.PrefixMap
-
-
Uses of PrefixMap in org.apache.jena.riot
Methods in org.apache.jena.riot with parameters of type PrefixMap Modifier and Type Method Description voidWriterDatasetRIOT. write(java.io.OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterDatasetRIOT. write(java.io.Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)Use of Writer is discouraged - let the serializer manage character sets in accordance with the formatvoidWriterGraphRIOT. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterGraphRIOT. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.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 PrefixMap Modifier and Type Method Description voidAdapterRDFWriter. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidAdapterRDFWriter. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context) -
Uses of PrefixMap in org.apache.jena.riot.lang
Methods in org.apache.jena.riot.lang that return PrefixMap Modifier and Type Method Description PrefixMapCollectorStreamBase. getPrefixes()PrefixMapCollectorStreamRDF. getPrefixes()PrefixMapPipedRDFIterator. getPrefixes()Gets the prefix map which contains the prefixes seen so far in the stream -
Uses of PrefixMap in org.apache.jena.riot.out
Methods in org.apache.jena.riot.out with parameters of type PrefixMap Modifier and Type Method Description static voidNodeFmtLib. serialize(org.apache.jena.atlas.io.IndentedWriter w, Node n, java.lang.String base, PrefixMap prefixMap)static java.lang.StringNodeFmtLib. str(Node n, java.lang.String base, PrefixMap prefixMap)static java.lang.StringNodeFmtLib. str(Node n, PrefixMap prefixMap)Constructors in org.apache.jena.riot.out with parameters of type PrefixMap Constructor Description NodeFormatterTTL(java.lang.String baseIRI, PrefixMap prefixMap)NodeFormatterTTL(java.lang.String baseIRI, PrefixMap prefixMap, NodeToLabel nodeToLabel)NodeFormatterTTL_MultiLine(java.lang.String baseIRI, PrefixMap prefixMap)NodeFormatterTTL_MultiLine(java.lang.String baseIRI, PrefixMap prefixMap, NodeToLabel nodeToLabel) -
Uses of PrefixMap in org.apache.jena.riot.system
Classes in org.apache.jena.riot.system that implement PrefixMap Modifier and Type Class Description classPrefixMapAdapterProvidedPrefixMapfor aPrefixMapping.classPrefixMapBaseAbstract base implementation of aPrefixMapwhich provides some implementations of API methods.classPrefixMapNullBase of always empty prefix mapsPrefixMapSinkandPrefixMapZero.classPrefixMapProxyDelay touching theDatasetGraph.prefixes()until an operation (method call) happens.classPrefixMapSinkEmpty prefix map that throws away updates.classPrefixMapStdIn-memory implementation of aPrefixMap.classPrefixMapUnmodifiableA PrefixMap that traps update operations on a wrapped prefix mapclassPrefixMapWrapperclassPrefixMapZeroAlways empty, immutable prefix mapFields in org.apache.jena.riot.system declared as PrefixMap Modifier and Type Field Description static PrefixMapPrefixMapZero. emptystatic PrefixMapPrefixMapSink. sinkMethods in org.apache.jena.riot.system that return PrefixMap Modifier and Type Method Description static PrefixMapPrefixes. adapt(Graph graph)static PrefixMapPrefixes. adapt(PrefixMapping prefixMapping)Apply a wrapper to aPrefixMappingto provide thePrefixMapAPI.static PrefixMapPrefixMapFactory. create()Creates a new prefix map.static PrefixMapPrefixMapFactory. create(java.util.Map<java.lang.String,java.lang.String> pmap)Creates a new prefix map,initialized from a Map of prefix to IRI string.static PrefixMapPrefixMapFactory. create(PrefixMap pmap)Creates a new prefix map which starts with a copy of an existing prefix map.static PrefixMapPrefixMapFactory. create(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(java.util.Map<java.lang.String,java.lang.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(PrefixMapping pmap)Creates a new prefix map which is intended for use in output which starts with a copy of an existing map.static PrefixMapPrefixMapFactory. emptyPrefixMap()Return an always-empty and immutable prefix mapPrefixMapParserProfile. getPrefixMap()PrefixMapParserProfileStd. getPrefixMap()PrefixMapParserProfileWrapper. getPrefixMap()static PrefixMapRiotLib. prefixMap(Graph graph)static PrefixMapRiotLib. prefixMap(DatasetGraph dsg)static PrefixMapPrefixMapFactory. unmodifiablePrefixMap(PrefixMap pmap)Return an immutable view of the prefix map.Methods in org.apache.jena.riot.system with parameters of type PrefixMap Modifier and Type Method Description static org.apache.jena.atlas.lib.Pair<java.lang.String,java.lang.String>PrefixLib. abbrev(PrefixMap prefixes, java.lang.String uriStr)Abbreviate a uriStr, return the prefix and local parts.static java.lang.StringPrefixLib. abbreviate(PrefixMap prefixes, java.lang.String uriStr)Abbreviate a uriStr, giving a string as a short form.static PrefixMappingPrefixes. adapt(PrefixMap prefixMap)Apply a wrapper to aPrefixMapto provide thePrefixMappingAPI.static PrefixMapPrefixMapFactory. create(PrefixMap pmap)Creates 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 java.lang.StringPrefixLib. expand(PrefixMap prefixes, java.lang.String prefixedName)Expand a prefixedName which must include a ':'static java.lang.StringPrefixLib. expand(PrefixMap prefixes, java.lang.String prefix, java.lang.String localName)Expand a prefix, local name pair.static java.lang.StringPrefixes. findByURI(PrefixMap pmap, java.lang.String uriStr)Reverse lookup of URI to a prefix.voidPrefixMap. putAll(PrefixMap pmap)Add a prefix, overwrites any existing associationvoidPrefixMapBase. putAll(PrefixMap pmap)voidPrefixMapNull. putAll(PrefixMap pmap)voidPrefixMapSink. putAll(PrefixMap pmap)voidPrefixMapUnmodifiable. putAll(PrefixMap pmap)voidPrefixMapWrapper. putAll(PrefixMap pmap)static voidStreamRDFOps. sendDatasetToStream(DatasetGraph datasetGraph, StreamRDF stream, java.lang.String baseURI, PrefixMap prefixMap)Send a dataset to a StreamRDF as triples and quads, using the explicitly given prefix mapstatic voidStreamRDFOps. sendGraphToStream(Graph graph, StreamRDF stream, java.lang.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 java.lang.StringPrefixes. toString(PrefixMap prefixMap)Calculate 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, boolean newStyle)Write prefixesConstructors in org.apache.jena.riot.system with parameters of type PrefixMap Constructor Description ParserProfileStd(FactoryRDF factory, ErrorHandler errorHandler, 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 PrefixMap Modifier and Type Method Description static RDF_TermThriftConvert. convert(Node node, PrefixMap pmap, boolean allowValues)static RDF_TripleThriftConvert. convert(Triple triple, PrefixMap pmap, boolean allowValues)static QuadThriftConvert. convert(RDF_Quad rq, PrefixMap pmap)static NodeThriftConvert. convert(RDF_Term term, PrefixMap pmap)static TripleThriftConvert. convert(RDF_Triple rt, PrefixMap pmap)static RDF_QuadThriftConvert. convert(Quad quad, PrefixMap pmap, boolean allowValues)static voidThriftConvert. toThrift(Node node, PrefixMap pmap, RDF_Term term, boolean allowValues)voidWriterDatasetThrift. write(java.io.OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterDatasetThrift. write(java.io.Writer out, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterGraphThrift. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterGraphThrift. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)Constructors in org.apache.jena.riot.thrift with parameters of type PrefixMap Constructor Description Thrift2StreamRDF(PrefixMap pmap, StreamRDF stream) -
Uses of PrefixMap in org.apache.jena.riot.tokens
Methods in org.apache.jena.riot.tokens with parameters of type PrefixMap Modifier and Type Method Description NodeToken. asNode(PrefixMap pmap)Token to Node, with a prefix map Turtle and N-triples need to process the token and not call this: 1/ Use bNode label as given 2/ No prefix or URI resolution.static TokenToken. tokenForNode(Node node, java.lang.String base, PrefixMap mapping) -
Uses of PrefixMap in org.apache.jena.riot.writer
Methods in org.apache.jena.riot.writer with parameters of type PrefixMap Modifier and Type Method Description static NodeFormatterTurtleShell. createNodeFormatter(PrefixMap pmap, java.lang.String baseURI, Context context)static java.lang.ObjectJsonLDWriter. toJsonLDJavaAPI(RDFFormat.JSONLDVariant variant, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context jenaContext)the JsonLD-java API object corresponding to a dataset and a JsonLD format.voidJsonLDWriter. write(java.io.OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidJsonLDWriter. write(java.io.Writer out, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidNQuadsWriter. write(java.io.OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidNQuadsWriter. write(java.io.Writer out, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidNTriplesWriter. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidNTriplesWriter. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidNullWriter. write(java.io.OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidNullWriter. write(java.io.Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidRDFJSONWriter. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidRDFJSONWriter. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidTriGWriterBase. write(java.io.OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidTriGWriterBase. write(java.io.Writer out, DatasetGraph dsg, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidTurtleWriterBase. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidTurtleWriterBase. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)abstract voidWriterDatasetRIOTBase. write(java.io.OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context context)abstract voidWriterDatasetRIOTBase. write(java.io.Writer out, DatasetGraph dataset, PrefixMap prefixMap, java.lang.String baseURI, Context context)abstract voidWriterGraphRIOTBase. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)abstract voidWriterGraphRIOTBase. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterTriX. write(java.io.OutputStream out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterTriX. write(java.io.OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterTriX. write(java.io.Writer out, Graph graph, PrefixMap prefixMap, java.lang.String baseURI, Context context)voidWriterTriX. write(java.io.Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, java.lang.String baseURI, Context context)Constructors in org.apache.jena.riot.writer with parameters of type PrefixMap Constructor Description StreamWriterTriX(java.io.OutputStream out, PrefixMap prefixMap) -
Uses of PrefixMap in org.apache.jena.sparql.core
Methods in org.apache.jena.sparql.core that return PrefixMap Modifier and Type Method Description PrefixMapDatasetGraph. prefixes()Prefixes for this DatasetGraphPrefixMapDatasetGraphMap. prefixes()PrefixMapDatasetGraphMapLink. prefixes()PrefixMapDatasetGraphOne. prefixes()PrefixMapDatasetGraphSink. prefixes()PrefixMapDatasetGraphWrapper. prefixes()PrefixMapDatasetGraphZero. prefixes() -
Uses of PrefixMap in org.apache.jena.sparql.core.mem
Methods in org.apache.jena.sparql.core.mem that return PrefixMap Modifier and Type Method Description PrefixMapDatasetGraphInMemory. prefixes() -
Uses of PrefixMap in org.apache.jena.sparql.engine.binding
Methods in org.apache.jena.sparql.engine.binding that return PrefixMap Modifier and Type Method Description PrefixMapBindingOutputStream. getPrefixMap()Methods in org.apache.jena.sparql.engine.binding with parameters of type PrefixMap Modifier and Type Method Description voidBindingOutputStream. setPrefixMap(PrefixMap pmap)Constructors in org.apache.jena.sparql.engine.binding with parameters of type PrefixMap Constructor Description BindingOutputStream(java.io.OutputStream out, java.util.List<Var> vars, PrefixMap prefixMapping)BindingOutputStream(java.io.OutputStream out, PrefixMap prefixMapping) -
Uses of PrefixMap in org.apache.jena.sparql.graph
Methods in org.apache.jena.sparql.graph that return PrefixMap Modifier and Type Method Description PrefixMapPrefixMappingAdapter. getPrefixMap()Constructors in org.apache.jena.sparql.graph with parameters of type PrefixMap Constructor Description PrefixMappingAdapter(PrefixMap pmap) -
Uses of PrefixMap in org.apache.jena.sparql.util
Methods in org.apache.jena.sparql.util that return PrefixMap Modifier and Type Method Description PrefixMapDyadicDatasetGraph. prefixes()Methods in org.apache.jena.sparql.util with parameters of type PrefixMap Modifier and Type Method Description static NodeNodeFactoryExtra. parseNode(java.lang.String nodeString, PrefixMap pmap)Parse a string into a node.
-