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

Packages that use StaticOperand
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.optimize This package contains the Optimizer interface, a rule-based optimizer implementation, and library of optimization rules. 
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.search.lucene An implementation of the SearchEngine interface that uses the Lucene library. 
 

Uses of StaticOperand in org.modeshape.graph.query
 

Fields in org.modeshape.graph.query declared as StaticOperand
protected  StaticOperand QueryBuilder.UpperBoundary.lowerBound
           
 

Constructors in org.modeshape.graph.query with parameters of type StaticOperand
QueryBuilder.UpperBoundary(QueryBuilder.ComparisonBuilder comparisonBuilder, StaticOperand lowerBound)
           
 

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

Subclasses of StaticOperand in org.modeshape.graph.query.model
 class BindVariableName
          A value bound to a variable name used in a Comparison constraint.
 class Literal
          A literal value used in a Comparison constraint.
 

Methods in org.modeshape.graph.query.model that return StaticOperand
 StaticOperand Between.getLowerBound()
          Get the lower bound operand.
 StaticOperand Comparison.getOperand2()
          Get the dynamic operand of this comparison.
 StaticOperand Between.getUpperBound()
          Get the upper bound operand.
 

Methods in org.modeshape.graph.query.model that return types with arguments of type StaticOperand
 Collection<StaticOperand> SetCriteria.getRightOperands()
          Get the collection of static operands defining the constrained values.
 

Constructors in org.modeshape.graph.query.model with parameters of type StaticOperand
Between(DynamicOperand operand, StaticOperand lowerBound, StaticOperand upperBound)
          Create a constraint that the values of the supplied dynamic operand are between the lower and upper bounds (inclusive).
Between(DynamicOperand operand, StaticOperand lowerBound, StaticOperand upperBound, boolean includeLowerBound, boolean includeUpperBound)
          Create a constraint that the values of the supplied dynamic operand are between the lower and upper bounds, specifying whether the boundary values are to be included in the range.
Comparison(DynamicOperand operand1, Operator operator, StaticOperand operand2)
           
SetCriteria(DynamicOperand left, StaticOperand... setOperands)
           
 

Constructor parameters in org.modeshape.graph.query.model with type arguments of type StaticOperand
SetCriteria(DynamicOperand left, Collection<StaticOperand> setOperands)
           
 

Uses of StaticOperand in org.modeshape.graph.query.optimize
 

Methods in org.modeshape.graph.query.optimize with parameters of type StaticOperand
protected  Object RewriteAsRangeCriteria.getValue(QueryContext context, StaticOperand operand)
          Get the value associated with the static operand of the comparison.
 

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

Methods in org.modeshape.graph.query.parse that return StaticOperand
protected  StaticOperand SqlQueryParser.parseStaticOperand(TokenStream tokens, TypeSystem typeSystem)
           
 

Methods in org.modeshape.graph.query.parse that return types with arguments of type StaticOperand
protected  List<StaticOperand> SqlQueryParser.parseInClause(TokenStream tokens, TypeSystem typeSystem)
           
 

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

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

Uses of StaticOperand in org.modeshape.search.lucene
 

Methods in org.modeshape.search.lucene with parameters of type StaticOperand
 Object AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createOperand(StaticOperand operand, boolean caseSensitive)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createQuery(DynamicOperand left, Operator operator, StaticOperand right)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createQuery(DynamicOperand left, Operator operator, StaticOperand right, boolean caseSensitive)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createQuery(DynamicOperand left, StaticOperand lower, StaticOperand upper, boolean includesLower, boolean includesUpper, boolean caseSensitive)
           
 



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