Uses of Interface
org.modeshape.graph.query.model.TypeSystem

Packages that use TypeSystem
org.modeshape.graph.property Nodes in a graph contain properties, and this package defines the interfaces, classes and exceptions for representing and working with properties and their values. 
org.modeshape.graph.property.basic A set of basic implementations of the various interfaces defined in org.modeshape.graph.property
org.modeshape.graph.query The Query API provides a mechanism for building and executing queries. 
org.modeshape.graph.query.parse This package defines the QueryParser interface, which defines a component that can parse a query represented in a specific language and produce the corresponding abstract query model representation. 
org.modeshape.graph.query.process This package defines the QueryProcessor interface, which is responsible for constructing for each query a tree of ProcessingComponent objects that each are responsible for processing a specific aspect of the query and returning the tuples to the parent component. 
org.modeshape.graph.query.validate This package provides the interfaces that define the tables and columns that can be queried. 
org.modeshape.jcr.xpath   
 

Uses of TypeSystem in org.modeshape.graph.property
 

Classes in org.modeshape.graph.property that implement TypeSystem
 class ValueTypeSystem
           
 

Methods in org.modeshape.graph.property that return TypeSystem
 TypeSystem ValueFactories.getTypeSystem()
          Get the type system associated with these factories.
 

Uses of TypeSystem in org.modeshape.graph.property.basic
 

Methods in org.modeshape.graph.property.basic that return TypeSystem
 TypeSystem StandardValueFactories.getTypeSystem()
          Get the type system associated with these factories.
 

Uses of TypeSystem in org.modeshape.graph.query
 

Methods in org.modeshape.graph.query that return TypeSystem
 TypeSystem QueryContext.getTypeSystem()
          Get the interface for working with literal values and types.
 

Methods in org.modeshape.graph.query with parameters of type TypeSystem
 QueryContext QueryContext.with(TypeSystem typeSystem)
          Obtain a copy of this context, except that the copy uses the supplied type system.
 

Constructors in org.modeshape.graph.query with parameters of type TypeSystem
QueryBuilder(TypeSystem context)
          Create a new builder that uses the supplied execution context.
QueryContext(Schemata schemata, TypeSystem typeSystem)
          Create a new context for query execution.
QueryContext(Schemata schemata, TypeSystem typeSystem, PlanHints hints)
          Create a new context for query execution.
QueryContext(Schemata schemata, TypeSystem typeSystem, PlanHints hints, Problems problems)
          Create a new context for query execution.
QueryContext(Schemata schemata, TypeSystem typeSystem, PlanHints hints, Problems problems, Map<String,Object> variables)
          Create a new context for query execution.
 

Uses of TypeSystem in org.modeshape.graph.query.parse
 

Methods in org.modeshape.graph.query.parse with parameters of type TypeSystem
 QueryCommand QueryParsers.parse(TypeSystem typeSystem, String language, String query)
          Execute the supplied query by planning, optimizing, and then processing it.
 QueryCommand SqlQueryParser.parseQuery(String query, TypeSystem typeSystem)
          Parse the supplied query from a string representation into a QueryCommand.
 QueryCommand QueryParser.parseQuery(String query, TypeSystem typeSystem)
          Parse the supplied query from a string representation into a QueryCommand.
 

Uses of TypeSystem in org.modeshape.graph.query.process
 

Methods in org.modeshape.graph.query.process with parameters of type TypeSystem
 String QueryResults.toString(TypeSystem typeSystem, int maxTuples)
          Get a string representation of this result object, with a maximum number of tuples to include.
 void QueryResults.toString(TypeSystem typeSystem, StringBuilder sb)
          Get a string representation of this result object.
 void QueryResults.toString(TypeSystem typeSystem, StringBuilder sb, int maxTuples)
          Get a string representation of this result object, with a maximum number of tuples to include.
 

Uses of TypeSystem in org.modeshape.graph.query.validate
 

Methods in org.modeshape.graph.query.validate with parameters of type TypeSystem
static ImmutableSchemata.Builder ImmutableSchemata.createBuilder(TypeSystem typeSystem)
          Obtain a new instance for building Schemata objects.
 

Uses of TypeSystem in org.modeshape.jcr.xpath
 

Methods in org.modeshape.jcr.xpath with parameters of type TypeSystem
 QueryCommand XPathQueryParser.parseQuery(String query, TypeSystem typeSystem)
          Parse the supplied query from a string representation into a QueryCommand.
 

Constructors in org.modeshape.jcr.xpath with parameters of type TypeSystem
XPathParser(TypeSystem context)
           
XPathToQueryTranslator(TypeSystem context, String query)
           
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.