Uses of Interface
org.apache.jena.riot.system.PrefixMap

Packages that use PrefixMap
com.hp.hpl.jena.sparql.engine.binding   
com.hp.hpl.jena.sparql.util   
org.apache.jena.riot   
org.apache.jena.riot.adapters   
org.apache.jena.riot.lang   
org.apache.jena.riot.out   
org.apache.jena.riot.system   
org.apache.jena.riot.tokens   
org.apache.jena.riot.writer   
 

Uses of PrefixMap in com.hp.hpl.jena.sparql.engine.binding
 

Methods in com.hp.hpl.jena.sparql.engine.binding that return PrefixMap
 PrefixMap BindingOutputStream.getPrefixMap()
           
 

Methods in com.hp.hpl.jena.sparql.engine.binding with parameters of type PrefixMap
 void BindingOutputStream.setPrefixMap(PrefixMap pmap)
           
 

Constructors in com.hp.hpl.jena.sparql.engine.binding with parameters of type PrefixMap
BindingOutputStream(OutputStream out, List<Var> vars, PrefixMap prefixMapping)
           
BindingOutputStream(OutputStream out, PrefixMap prefixMapping)
           
 

Uses of PrefixMap in com.hp.hpl.jena.sparql.util
 

Methods in com.hp.hpl.jena.sparql.util with parameters of type PrefixMap
static Node NodeFactoryExtra.parseNode(String nodeString, PrefixMap pmap)
          Parse a string into a node.
 

Uses of PrefixMap in org.apache.jena.riot
 

Methods in org.apache.jena.riot with parameters of type PrefixMap
 void WriterDatasetRIOT.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void WriterGraphRIOT.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void WriterDatasetRIOT.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 format
 void WriterGraphRIOT.write(Writer out, 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 PrefixMap
 void AdapterRDFWriter.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void AdapterRDFWriter.write(Writer out, 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 PrefixMap
 PrefixMap PipedRDFIterator.getPrefixes()
          Gets the prefix map which contains the prefixes seen so far in the stream
 PrefixMap CollectorStreamBase.getPrefixes()
           
 

Uses of PrefixMap in org.apache.jena.riot.out
 

Methods in org.apache.jena.riot.out with parameters of type PrefixMap
static void NodeFmtLib.serialize(IndentedWriter w, Node n, String base, PrefixMap prefixMap)
           
static String NodeFmtLib.str(Node n, String base, PrefixMap prefixMap)
           
 void JsonLDWriter.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 void JsonLDWriter.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 

Constructors in org.apache.jena.riot.out with parameters of type PrefixMap
NodeFormatterTTL(String baseIRI, PrefixMap prefixMap)
           
NodeFormatterTTL(String baseIRI, PrefixMap prefixMap, NodeToLabel nodeToLabel)
           
OutputPolicy(NodeToLabel nodeToLabel, String baseIRI, PrefixMap prefixMap)
           
 

Uses of PrefixMap in org.apache.jena.riot.system
 

Classes in org.apache.jena.riot.system that implement PrefixMap
 class FastAbbreviatingPrefixMap
          A prefix map implementation suited to output heavy workloads
 class PrefixMapBase
          Abstract base implementation of a PrefixMap which provides some useful helper methods
 class PrefixMapExtended
          Implementation of a PrefixMap which extends another prefix map without ever altering the parent.
 class PrefixMapNull
          Always empty prefix map
 class PrefixMapStd
          Default implementation of a PrefixMap, this implementation is best suited to use for input.
 class PrefixMapUnmodifiable
          A PrefixMap that traps update operations on a wrapped prefix map
 class PrefixMapWrapper
          Creates an always-empty prefix map, which can not be changed.
 

Fields in org.apache.jena.riot.system declared as PrefixMap
static PrefixMap PrefixMapNull.empty
           
 

Methods in org.apache.jena.riot.system that return PrefixMap
static PrefixMap PrefixMapFactory.create()
          Creates a new prefix map.
static PrefixMap PrefixMapFactory.create(Map<String,String> pmap)
          Creates a new prefix map,initialized from a Map of prefix to IRI string.
static PrefixMap PrefixMapFactory.create(PrefixMap pmap)
          Creates a new prefix map which starts with a copy of an existing prefix map.
static PrefixMap PrefixMapFactory.create(PrefixMapping pmap)
          Creates a new prefix map which starts with a copy of an existing map.
static PrefixMap PrefixMapFactory.createForInput()
          Creates a new prefix map which is intended for use in input.
static PrefixMap PrefixMapFactory.createForInput(Map<String,String> pmap)
          Creates a new prefix map, initialized from a Map of prefix to IRI string.
static PrefixMap PrefixMapFactory.createForInput(PrefixMap pmap)
          Creates a new prefix map which is intended for use in input which starts with a copy of an existing map
static PrefixMap PrefixMapFactory.createForInput(PrefixMapping pmap)
          Creates a new prefix map which is intended for use in iput which starts with a copy of an existing map
static PrefixMap PrefixMapFactory.createForOutput()
          Creates a new prefix map which is intended for use in output
static PrefixMap PrefixMapFactory.createForOutput(Map<String,String> pmap)
          Creates a new prefix map, initialized from a Map of prefix to IRI string.
static PrefixMap PrefixMapFactory.createForOutput(PrefixMap pmap)
          Creates a new prefix map which is intended for use in output which starts with a copy of an existing map
static PrefixMap PrefixMapFactory.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 PrefixMap PrefixMapFactory.emptyPrefixMap()
          Return an always-empty and immutable prefix map
static PrefixMap PrefixMapFactory.extend(PrefixMap pmap)
          Creates a new prefix map which is an extension of an existing prefix map
 PrefixMap Prologue.getPrefixMap()
          Return the prefix map from the parsed query
static PrefixMap RiotLib.prefixMap(DatasetGraph dsg)
           
static PrefixMap RiotLib.prefixMap(Graph graph)
           
static PrefixMap PrefixMapFactory.unmodifiablePrefixMap(PrefixMap pmap)
          Return an immutable view of the prefix map.
 

Methods in org.apache.jena.riot.system with parameters of type PrefixMap
static int RiotLib.calcWidth(PrefixMap prefixMap, String baseURI, Collection<Node> nodes, int minWidth, int maxWidth)
           
static int RiotLib.calcWidthTriples(PrefixMap prefixMap, String baseURI, Collection<Triple> triples, int minWidth, int maxWidth)
           
static PrefixMap PrefixMapFactory.create(PrefixMap pmap)
          Creates a new prefix map which starts with a copy of an existing prefix map.
static PrefixMap PrefixMapFactory.createForInput(PrefixMap pmap)
          Creates a new prefix map which is intended for use in input which starts with a copy of an existing map
static PrefixMap PrefixMapFactory.createForOutput(PrefixMap pmap)
          Creates a new prefix map which is intended for use in output which starts with a copy of an existing map
static PrefixMap PrefixMapFactory.extend(PrefixMap pmap)
          Creates a new prefix map which is an extension of an existing prefix map
 void PrefixMapWrapper.putAll(PrefixMap pmap)
           
 void PrefixMapUnmodifiable.putAll(PrefixMap pmap)
           
 void PrefixMapNull.putAll(PrefixMap pmap)
           
 void PrefixMapBase.putAll(PrefixMap pmap)
           
 void PrefixMap.putAll(PrefixMap pmap)
          Add a prefix, overwrites any existing association
 void Prologue.setPrefixMapping(PrefixMap pmap)
          Set the mapping
 Prologue Prologue.sub(PrefixMap newMappings)
           
 Prologue Prologue.sub(PrefixMap newMappings, String base)
           
static PrefixMap PrefixMapFactory.unmodifiablePrefixMap(PrefixMap pmap)
          Return an immutable view of the prefix map.
static void RiotLib.writePrefixes(IndentedWriter out, PrefixMap prefixMap)
           
 

Constructors in org.apache.jena.riot.system with parameters of type PrefixMap
FastAbbreviatingPrefixMap(PrefixMap pmap)
          Create a new fast abbreviating prefix map which copies mappings from an existing map
PrefixMapExtended(PrefixMap ext)
          Creates an extended prefix map
PrefixMapStd(PrefixMap prefixMap)
          Creates a new prefix mapping copied from an existing map
PrefixMapUnmodifiable(PrefixMap other)
           
PrefixMapWrapper(PrefixMap other)
           
Prologue(PrefixMap pmap, IRIResolver resolver)
           
 

Uses of PrefixMap in org.apache.jena.riot.tokens
 

Methods in org.apache.jena.riot.tokens with parameters of type PrefixMap
 Node Token.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 Token Token.tokenForNode(Node node, 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
abstract  void WriterDatasetRIOTBase.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 void TriGWriterBase.write(OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context)
           
 void NullWriter.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NQuadsWriter.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void WriterGraphRIOTBase.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void TurtleWriterBase.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void RDFJSONWriter.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NTriplesWriter.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void WriterDatasetRIOTBase.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 void TriGWriterBase.write(Writer out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context)
           
 void NullWriter.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NQuadsWriter.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void WriterGraphRIOTBase.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void TurtleWriterBase.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void RDFJSONWriter.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NTriplesWriter.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 



Licenced under the Apache License, Version 2.0