Uses of Class
org.modeshape.graph.query.model.Operator

Packages that use Operator
org.modeshape.graph.query The Query API provides a mechanism for building and executing queries. 
org.modeshape.graph.query.model The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query. 
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. 
 

Uses of Operator in org.modeshape.graph.query
 

Fields in org.modeshape.graph.query declared as Operator
protected  Operator QueryBuilder.RightHandSide.operator
           
 

Methods in org.modeshape.graph.query with parameters of type Operator
 QueryBuilder.RightHandSide QueryBuilder.ComparisonBuilder.is(Operator operator)
          Define the operator that will be used in the comparison, returning an interface that can be used to define the right-hand-side of the comparison.
 QueryBuilder.ConstraintBuilder QueryBuilder.ComparisonBuilder.is(Operator operator, Object literal)
          Define the right-hand-side of the constraint using the supplied operator.
 QueryBuilder.ConstraintBuilder QueryBuilder.ComparisonBuilder.isVariable(Operator operator, String variableName)
          Define the right-hand-side of the constraint using the supplied operator.
 

Constructors in org.modeshape.graph.query with parameters of type Operator
QueryBuilder.RightHandSide(QueryBuilder.ComparisonBuilder comparisonBuilder, Operator operator)
           
 

Uses of Operator in org.modeshape.graph.query.model
 

Methods in org.modeshape.graph.query.model that return Operator
static Operator Operator.forSymbol(String symbol)
          Attempt to find the Operator given a symbol.
 Operator Comparison.getOperator()
          Get the operator for this comparison
 Operator Operator.getReverse()
          Get the equivalent operator if the operands are to be reversed.
static Operator Operator.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Operator[] Operator.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in org.modeshape.graph.query.model with parameters of type Operator
Comparison(DynamicOperand operand1, Operator operator, StaticOperand operand2)
           
 

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

Methods in org.modeshape.graph.query.parse that return Operator
protected  Operator SqlQueryParser.parseComparisonOperator(TokenStream tokens)
           
 

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

Methods in org.modeshape.graph.query.process with parameters of type Operator
protected  SelectComponent.ConstraintChecker SelectComponent.createChecker(TypeSystem types, Schemata schemata, QueryResults.Columns columns, ProcessingComponent.DynamicOperation dynamicOperation, Operator operator, StaticOperand staticOperand)
           
 



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