Uses of Interface
org.modeshape.search.lucene.query.CaseOperations.CaseOperation

Packages that use CaseOperations.CaseOperation
org.modeshape.search.lucene An implementation of the SearchEngine interface that uses the Lucene library. 
org.modeshape.search.lucene.query A set of Lucene Query specializations that allow the LuceneSearchEngine to create Lucene queries with additional kinds of constraints. 
 

Uses of CaseOperations.CaseOperation in org.modeshape.search.lucene
 

Methods in org.modeshape.search.lucene with parameters of type CaseOperations.CaseOperation
protected  org.apache.lucene.search.Query LuceneSearchSession.createLocalNameQuery(String likeExpression, CaseOperations.CaseOperation caseOperation)
           
 Object AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createOperand(StaticOperand operand, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createQuery(DynamicOperand left, Operator operator, StaticOperand right, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.AbstractLuceneProcessor.QueryFactory.createQuery(DynamicOperand left, StaticOperand lower, StaticOperand upper, boolean includesLower, boolean includesUpper, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesLike(String fieldName, String likeExpression, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesLike(String fieldName, String likeExpression, CaseOperations.CaseOperation caseOperation)
          Create a query that can be used to find documents (or nodes) that have a field value that satisfies the supplied LIKE expression.
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodeLocalName nodeName, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodeLocalName nodeName, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodeName nodeName, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodeName nodeName, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(NodePath nodePath, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(NodePath nodePath, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query LuceneSearchSession.findNodesWith(PropertyValue propertyValue, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 org.apache.lucene.search.Query AbstractLuceneSearchEngine.WorkspaceSession.findNodesWith(PropertyValue propertyValue, Operator operator, Object value, CaseOperations.CaseOperation caseOperation)
           
 

Uses of CaseOperations.CaseOperation in org.modeshape.search.lucene.query
 

Fields in org.modeshape.search.lucene.query declared as CaseOperations.CaseOperation
static CaseOperations.CaseOperation CaseOperations.AS_IS
          The CaseOperation instance that leaves as is the string used within the indexes before being evaluated.
static CaseOperations.CaseOperation CaseOperations.LOWERCASE
          The CaseOperation instance that lowercases the string used within the indexes before being evaluated.
static CaseOperations.CaseOperation CaseOperations.UPPERCASE
          The CaseOperation instance that uppercases the string used within the indexes before being evaluated.
 

Methods in org.modeshape.search.lucene.query with parameters of type CaseOperations.CaseOperation
static org.apache.lucene.search.Query CompareStringQuery.createQueryForNodesWithFieldEqualTo(String constraintValue, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents with a string field value that is equal to the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldGreaterThan(String constraintValue, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents with a string field value that is greater than the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldGreaterThanOrEqualTo(String constraintValue, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents with a string field value that is greater than or equal to the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldLessThan(String constraintValue, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents with a string field value that is less than the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldLessThanOrEqualTo(String constraintValue, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents with a string field value that is less than or equal to the supplied constraint value.
static org.apache.lucene.search.Query CompareStringQuery.createQueryForNodesWithFieldLike(String likeExpression, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents with a string field value that is LIKE the supplied constraint value, where the LIKE expression contains the SQL wildcard characters '%' and '_' or the regular expression wildcard characters '*' and '?'.
static org.apache.lucene.search.Query CompareNameQuery.createQueryForNodesWithNameEqualTo(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation, boolean includeSns)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is greater than the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameGreaterThan(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation, boolean includeSns)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is greater than the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameGreaterThanOrEqualTo(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation, boolean includeSns)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is greater than or equal to the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameLessThan(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation, boolean includeSns)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is less than the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameLessThanOrEqualTo(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation, boolean includeSns)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is less than or equal to the supplied constraint name.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathGreaterThan(Path constraintPath, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is greater than the supplied constraint path.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathGreaterThanOrEqualTo(Path constraintPath, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is greater than or equal to the supplied constraint path.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathLessThan(Path constraintPath, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is less than the supplied constraint path.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathLessThanOrEqualTo(Path constraintPath, String fieldName, ValueFactories factories, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is less than or equal to the supplied constraint path.
 

Constructors in org.modeshape.search.lucene.query with parameters of type CaseOperations.CaseOperation
CompareNameQuery(String localNameField, String snsIndexFieldName, Path.Segment constraintValue, PathFactory pathFactory, ValueFactory<String> stringFactory, ValueFactory<Long> longFactory, CompareQuery.Evaluator<Path.Segment> evaluator, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores nodes according to the supplied comparator.
ComparePathQuery(String fieldName, Path constraintPath, ValueFactory<Path> pathFactory, ValueFactory<String> stringFactory, CompareQuery.Evaluator<Path> evaluator, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores nodes according to the supplied comparator.
CompareStringQuery(String fieldName, String constraintValue, ValueFactory<String> valueFactory, ValueFactory<String> stringFactory, CompareQuery.Evaluator<String> evaluator, CaseOperations.CaseOperation caseOperation)
          Construct a Query implementation that scores nodes according to the supplied comparator.
 



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