Uses of Interface
com.hp.hpl.jena.shared.PrefixMapping

Packages that use PrefixMapping
com.hp.hpl.jena.graph This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system. 
com.hp.hpl.jena.graph.compose This package defines simple composite graphs - union, intersection, difference, and update-tracking. 
com.hp.hpl.jena.ontology Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. 
com.hp.hpl.jena.rdf.model A package for creating and manipulating RDF graphs. 
com.hp.hpl.jena.rdf.model.impl This package contains implementations of the interfaces defined in the .model package, eg ModelCom for Model, ResourceImpl for Resource, and so on. 
com.hp.hpl.jena.reasoner The Jena2 reasoner subsystem is designed to allow a range of inference engines to be plugged into Jena. 
com.hp.hpl.jena.shared This package defines some classes common to the Jena API and SPI levels, in particular the JenaException class from which all Jena-specific exceptions hang, and the interface PrefixMapping for translation to and from QNames. 
com.hp.hpl.jena.shared.impl This package provides "standard" implementations for the interfaces defined by .shared, notably an implementation of PrefixMapping. 
com.hp.hpl.jena.util Miscellaneous collection of utility classes. 
 

Uses of PrefixMapping in com.hp.hpl.jena.graph
 

Methods in com.hp.hpl.jena.graph that return PrefixMapping
 PrefixMapping Graph.getPrefixMapping()
          returns this Graph's prefix mapping.
 

Methods in com.hp.hpl.jena.graph with parameters of type PrefixMapping
 String Triple.toString(PrefixMapping pm)
           
 String Node.toString(PrefixMapping pm)
          Answer a human-readable representation of the Node, quoting literals and compressing URIs.
 String Node_URI.toString(PrefixMapping pm, boolean quoting)
          Answer a String representing the node, taking into account the PrefixMapping.
 String Node_ANY.toString(PrefixMapping pm, boolean quoting)
           
 String Node_Literal.toString(PrefixMapping pm, boolean quoting)
           
 String Node.toString(PrefixMapping pm, boolean quoting)
          Answer a human readable representation of this Node, quoting literals if specified, and compressing URIs using the prefix mapping supplied.
 

Uses of PrefixMapping in com.hp.hpl.jena.graph.compose
 

Classes in com.hp.hpl.jena.graph.compose that implement PrefixMapping
 class PolyadicPrefixMappingImpl
           
 

Methods in com.hp.hpl.jena.graph.compose that return PrefixMapping
 PrefixMapping Polyadic.getPrefixMapping()
           
 PrefixMapping PolyadicPrefixMappingImpl.removeNsPrefix(String prefix)
           
 PrefixMapping PolyadicPrefixMappingImpl.setNsPrefix(String prefix, String uri)
           
 PrefixMapping PolyadicPrefixMappingImpl.setNsPrefixes(Map<String,String> other)
          Add the bindings in the map to our own.
 PrefixMapping PolyadicPrefixMappingImpl.setNsPrefixes(PrefixMapping other)
          Add the bindings of other to our own.
 

Methods in com.hp.hpl.jena.graph.compose with parameters of type PrefixMapping
 PrefixMapping PolyadicPrefixMappingImpl.setNsPrefixes(PrefixMapping other)
          Add the bindings of other to our own.
 

Uses of PrefixMapping in com.hp.hpl.jena.ontology
 

Subinterfaces of PrefixMapping in com.hp.hpl.jena.ontology
 interface OntModel
           An enhanced view of a Jena model that is known to contain ontology data, under a given ontology vocabulary (such as OWL).
 

Uses of PrefixMapping in com.hp.hpl.jena.rdf.model
 

Subinterfaces of PrefixMapping in com.hp.hpl.jena.rdf.model
 interface InfModel
          An extension to the normal Model interface that supports access to any underlying inference capability.
 interface Model
          An RDF Model.
 

Methods in com.hp.hpl.jena.rdf.model that return PrefixMapping
static PrefixMapping ModelFactory.getDefaultModelPrefixes()
          Answer the current default model prefixes PrefixMapping object.
static PrefixMapping ModelFactory.setDefaultModelPrefixes(PrefixMapping pm)
          Each Model created by ModelFactory has a default set of prefix mappings.
 

Methods in com.hp.hpl.jena.rdf.model with parameters of type PrefixMapping
static PrefixMapping ModelFactory.setDefaultModelPrefixes(PrefixMapping pm)
          Each Model created by ModelFactory has a default set of prefix mappings.
 

Uses of PrefixMapping in com.hp.hpl.jena.rdf.model.impl
 

Classes in com.hp.hpl.jena.rdf.model.impl that implement PrefixMapping
 class com.hp.hpl.jena.rdf.model.impl.ModelCom
           
 

Uses of PrefixMapping in com.hp.hpl.jena.reasoner
 

Methods in com.hp.hpl.jena.reasoner that return PrefixMapping
 PrefixMapping BaseInfGraph.getPrefixMapping()
          Inference graphs share the prefix-mapping of their underlying raw graph.
 

Uses of PrefixMapping in com.hp.hpl.jena.shared
 

Fields in com.hp.hpl.jena.shared declared as PrefixMapping
static PrefixMapping PrefixMapping.Extended
          A PrefixMapping built on Standard with some extras
static PrefixMapping PrefixMapping.Standard
          A PrefixMapping that contains the "standard" prefixes we know about, viz rdf, rdfs, dc, rss, vcard, and owl.
 

Methods in com.hp.hpl.jena.shared that return PrefixMapping
static PrefixMapping PrefixMapping.Factory.create()
           
 PrefixMapping PrefixMapping.lock()
          Lock the PrefixMapping so that changes can no longer be made to it.
 PrefixMapping PrefixMapping.removeNsPrefix(String prefix)
          Remove any existing maplet with the given prefix name and answer this mapping.
 PrefixMapping PrefixMapping.setNsPrefix(String prefix, String uri)
          Specify the prefix name for a URI prefix string.
 PrefixMapping PrefixMapping.setNsPrefixes(Map<String,String> map)
          Copies the prefix mapping from other into this.
 PrefixMapping PrefixMapping.setNsPrefixes(PrefixMapping other)
          Copies the prefixes from other into this.
 PrefixMapping PrefixMapping.withDefaultMappings(PrefixMapping map)
          Update this PrefixMapping with the bindings in map, only adding those (p, u) pairs for which neither p nor u appears in this mapping.
 

Methods in com.hp.hpl.jena.shared with parameters of type PrefixMapping
 boolean PrefixMapping.samePrefixMappingAs(PrefixMapping other)
          Answer true iff this prefix-mappings are equal, that is, map the same prefixes to the same URIs; same as this.getNsPrefixMap().equals( other.getNsPrefixMap() ) except that it may avoid unnecessary Map creations.
 PrefixMapping PrefixMapping.setNsPrefixes(PrefixMapping other)
          Copies the prefixes from other into this.
 PrefixMapping PrefixMapping.withDefaultMappings(PrefixMapping map)
          Update this PrefixMapping with the bindings in map, only adding those (p, u) pairs for which neither p nor u appears in this mapping.
 

Constructors in com.hp.hpl.jena.shared with parameters of type PrefixMapping
PrefixMapping.JenaLockedException(PrefixMapping pm)
           
 

Uses of PrefixMapping in com.hp.hpl.jena.shared.impl
 

Classes in com.hp.hpl.jena.shared.impl that implement PrefixMapping
 class com.hp.hpl.jena.shared.impl.PrefixMappingImpl
           
 

Uses of PrefixMapping in com.hp.hpl.jena.util
 

Classes in com.hp.hpl.jena.util that implement PrefixMapping
 class MonitorModel
          Model wrapper which provides normal access to an underlying model but also maintains a snapshot of the triples it was last known to contain.
 



Licenced under the Apache License, Version 2.0