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. 
org.modeshape.graph.query.validate This package provides the interfaces that define the tables and columns that can be queried. 
org.modeshape.jcr.query   
org.modeshape.jcr.query.qom   
org.modeshape.jcr.xpath The components used to parse JCR XPath queries and translate them into equivalent JCR-SQL2 queries. 
org.modeshape.search.lucene An implementation of the SearchEngine interface that uses the Lucene library. 
 

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 literalOrSubquery)
          Define the right-hand-side of the constraint using the supplied operator.
 QueryBuilder.ConstraintBuilder QueryBuilder.ComparisonBuilder.is(Operator operator, QueryCommand subquery)
          Define the right-hand-side of the constraint using the supplied operator.
 QueryBuilder.ConstraintBuilder QueryBuilder.ComparisonBuilder.is(Operator operator, Subquery subquery)
          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.operator()
          Get the operator for this comparison
 Operator Operator.reverse()
          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)
           
 

Methods in org.modeshape.graph.query.parse with parameters of type Operator
protected  Comparison SqlQueryParser.comparison(DynamicOperand left, Operator operator, StaticOperand right)
           
 

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)
           
 

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

Fields in org.modeshape.graph.query.validate with type parameters of type Operator
static Set<Operator> ImmutableColumn.ALL_OPERATORS
           
static Set<Operator> ImmutableColumn.NO_OPERATORS
           
 

Methods in org.modeshape.graph.query.validate that return types with arguments of type Operator
 Set<Operator> Schemata.Column.getOperators()
          Get the set of operators that can be used in a comparison involving this column.
 Set<Operator> ImmutableColumn.getOperators()
          Get the set of operators that can be used in a comparison involving this column.
protected  Set<Operator> ImmutableSchemata.Builder.operators(SelectorName tableName, String columnName, Set<Operator> defaultOperators)
           
 

Methods in org.modeshape.graph.query.validate with parameters of type Operator
protected  void Validator.verifyOperator(DynamicOperand operand, Operator op)
           
protected  void Validator.verifyOperator(SelectorName selectorName, String propertyName, Operator op)
           
 

Method parameters in org.modeshape.graph.query.validate with type arguments of type Operator
 ImmutableSchemata.Builder ImmutableSchemata.Builder.addColumn(String tableName, String columnName, String type, boolean fullTextSearchable, boolean orderable, Set<Operator> operations)
          Add a column with the supplied name and type to the named table.
 ImmutableSchemata.Builder ImmutableSchemata.Builder.markOperators(String tableName, String columnName, Set<Operator> operators)
          Record the operators that are allowed for the named column on the named table.
protected  Set<Operator> ImmutableSchemata.Builder.operators(SelectorName tableName, String columnName, Set<Operator> defaultOperators)
           
 

Constructors in org.modeshape.graph.query.validate with parameters of type Operator
ImmutableColumn(String name, String type, boolean fullTextSearchable, boolean orderable, Operator... operators)
           
 

Constructor parameters in org.modeshape.graph.query.validate with type arguments of type Operator
ImmutableColumn(String name, String type, boolean fullTextSearchable, boolean orderable, Set<Operator> operators)
           
 

Uses of Operator in org.modeshape.jcr.query
 

Methods in org.modeshape.jcr.query with parameters of type Operator
protected  JcrComparison JcrSql2QueryParser.comparison(DynamicOperand left, Operator operator, StaticOperand right)
          
 

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

Constructors in org.modeshape.jcr.query.qom with parameters of type Operator
JcrComparison(JcrDynamicOperand operand1, Operator operator, JcrStaticOperand operand2)
           
 

Uses of Operator in org.modeshape.jcr.xpath
 

Methods in org.modeshape.jcr.xpath that return Operator
 Operator XPath.Comparison.getOperator()
           
protected  Operator XPathParser.parseGeneralComp(TokenStream tokens)
           
 

Constructors in org.modeshape.jcr.xpath with parameters of type Operator
XPath.Comparison(XPath.Component left, Operator operator, XPath.Component right)
           
 

Uses of Operator in org.modeshape.search.lucene
 

Methods in org.modeshape.search.lucene with parameters of type Operator
 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 LuceneSearchSession.findNodesWith(Length propertyLength, Operator operator, Object value)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(Length propertyLength, Operator operator, Object value)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodeDepth depthConstraint, Operator operator, Object value)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodeDepth depthConstraint, Operator operator, Object value)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodeLocalName nodeName, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodeLocalName nodeName, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodeName nodeName, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodeName nodeName, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodePath nodePath, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodePath nodePath, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(PropertyValue propertyValue, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(PropertyValue propertyValue, Operator operator, Object value, boolean caseSensitive)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(ReferenceValue referenceValue, Operator operator, Object value)
          
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(ReferenceValue referenceValue, Operator operator, Object value)
           
 



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