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

Packages that use ArithmeticOperator
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.jcr.query   
org.modeshape.jcr.query.qom   
 

Uses of ArithmeticOperator in org.modeshape.graph.query
 

Fields in org.modeshape.graph.query declared as ArithmeticOperator
protected  ArithmeticOperator QueryBuilder.ArithmeticBuilder.operator
           
 

Constructors in org.modeshape.graph.query with parameters of type ArithmeticOperator
QueryBuilder.ArithmeticBuilder(ArithmeticOperator operator, QueryBuilder.ComparisonBuilder comparisonBuilder, DynamicOperand left, QueryBuilder.ArithmeticBuilder parent)
           
 

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

Methods in org.modeshape.graph.query.model that return ArithmeticOperator
static ArithmeticOperator ArithmeticOperator.forSymbol(String symbol)
          Attempt to find the Operator given a symbol.
 ArithmeticOperator ArithmeticOperand.operator()
          Get the operator for this binary operand.
static ArithmeticOperator ArithmeticOperator.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ArithmeticOperator[] ArithmeticOperator.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.modeshape.graph.query.model with parameters of type ArithmeticOperator
 boolean ArithmeticOperator.precedes(ArithmeticOperator operator)
          Determine whether this operator has a higher precedence than the supplied operator.
 

Constructors in org.modeshape.graph.query.model with parameters of type ArithmeticOperator
ArithmeticOperand(DynamicOperand left, ArithmeticOperator operator, DynamicOperand right)
          Create a arithmetic dynamic operand that operates upon the supplied operand(s).
 

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

Methods in org.modeshape.graph.query.parse with parameters of type ArithmeticOperator
protected  ArithmeticOperand SqlQueryParser.arithmeticOperand(DynamicOperand leftOperand, ArithmeticOperator operator, DynamicOperand rightOperand)
           
 

Uses of ArithmeticOperator in org.modeshape.jcr.query
 

Methods in org.modeshape.jcr.query with parameters of type ArithmeticOperator
protected  JcrArithmeticOperand JcrSql2QueryParser.arithmeticOperand(DynamicOperand leftOperand, ArithmeticOperator operator, DynamicOperand rightOperand)
          
 

Uses of ArithmeticOperator in org.modeshape.jcr.query.qom
 

Methods in org.modeshape.jcr.query.qom with parameters of type ArithmeticOperator
 ArithmeticOperand JcrQueryObjectModelFactory.arithmeticOperand(DynamicOperand left, ArithmeticOperator operator, DynamicOperand right)
           
 

Constructors in org.modeshape.jcr.query.qom with parameters of type ArithmeticOperator
JcrArithmeticOperand(JcrDynamicOperand left, ArithmeticOperator operator, JcrDynamicOperand right)
          Create a arithmetic dynamic operand that operates upon the supplied operand(s).
 



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