Uses of Class
org.apache.lucene.queryParser.QueryParser.Operator
-
Packages that use QueryParser.Operator Package Description org.apache.lucene.queryParser A simple query parser implemented with JavaCC. -
-
Uses of QueryParser.Operator in org.apache.lucene.queryParser
Fields in org.apache.lucene.queryParser declared as QueryParser.Operator Modifier and Type Field Description static QueryParser.Operator
QueryParser. AND_OPERATOR
Alternative form of QueryParser.Operator.ANDstatic QueryParser.Operator
QueryParser. OR_OPERATOR
Alternative form of QueryParser.Operator.ORMethods in org.apache.lucene.queryParser that return QueryParser.Operator Modifier and Type Method Description QueryParser.Operator
QueryParser. getDefaultOperator()
Gets implicit operator setting, which will be either AND_OPERATOR or OR_OPERATOR.static QueryParser.Operator
QueryParser.Operator. valueOf(String name)
Returns the enum constant of this type with the specified name.static QueryParser.Operator[]
QueryParser.Operator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.queryParser with parameters of type QueryParser.Operator Modifier and Type Method Description void
QueryParser. setDefaultOperator(QueryParser.Operator op)
Sets the boolean operator of the QueryParser.
-