Uses of Class
org.apache.lucene.queryParser.surround.query.SrndQuery
-
Packages that use SrndQuery Package Description org.apache.lucene.queryParser.surround.parser This package contains the QueryParser.jj source file for the Surround parser.org.apache.lucene.queryParser.surround.query This package contains SrndQuery and its subclasses. -
-
Uses of SrndQuery in org.apache.lucene.queryParser.surround.parser
Methods in org.apache.lucene.queryParser.surround.parser that return SrndQuery Modifier and Type Method Description SrndQuery
QueryParser. AndQuery()
SrndQuery
QueryParser. FieldsQuery()
protected SrndQuery
QueryParser. getAndQuery(List<SrndQuery> queries, boolean infix, Token andToken)
protected SrndQuery
QueryParser. getDistanceQuery(List<SrndQuery> queries, boolean infix, Token dToken, boolean ordered)
protected SrndQuery
QueryParser. getFieldsQuery(SrndQuery q, ArrayList<String> fieldNames)
protected SrndQuery
QueryParser. getNotQuery(List<SrndQuery> queries, Token notToken)
protected SrndQuery
QueryParser. getOrQuery(List<SrndQuery> queries, boolean infix, Token orToken)
protected SrndQuery
QueryParser. getPrefixQuery(String prefix, boolean quoted)
protected SrndQuery
QueryParser. getTermQuery(String term, boolean quoted)
protected SrndQuery
QueryParser. getTruncQuery(String truncated)
SrndQuery
QueryParser. NotQuery()
SrndQuery
QueryParser. NQuery()
SrndQuery
QueryParser. OrQuery()
static SrndQuery
QueryParser. parse(String query)
SrndQuery
QueryParser. parse2(String query)
SrndQuery
QueryParser. PrefixOperatorQuery()
SrndQuery
QueryParser. PrimaryQuery()
SrndQuery
QueryParser. SimpleTerm()
SrndQuery
QueryParser. TopSrndQuery()
SrndQuery
QueryParser. WQuery()
Methods in org.apache.lucene.queryParser.surround.parser that return types with arguments of type SrndQuery Modifier and Type Method Description List<SrndQuery>
QueryParser. FieldsQueryList()
Methods in org.apache.lucene.queryParser.surround.parser with parameters of type SrndQuery Modifier and Type Method Description protected SrndQuery
QueryParser. getFieldsQuery(SrndQuery q, ArrayList<String> fieldNames)
void
QueryParser. OptionalWeights(SrndQuery q)
Method parameters in org.apache.lucene.queryParser.surround.parser with type arguments of type SrndQuery Modifier and Type Method Description protected SrndQuery
QueryParser. getAndQuery(List<SrndQuery> queries, boolean infix, Token andToken)
protected SrndQuery
QueryParser. getDistanceQuery(List<SrndQuery> queries, boolean infix, Token dToken, boolean ordered)
protected SrndQuery
QueryParser. getNotQuery(List<SrndQuery> queries, Token notToken)
protected SrndQuery
QueryParser. getOrQuery(List<SrndQuery> queries, boolean infix, Token orToken)
-
Uses of SrndQuery in org.apache.lucene.queryParser.surround.query
Subclasses of SrndQuery in org.apache.lucene.queryParser.surround.query Modifier and Type Class Description class
AndQuery
class
ComposedQuery
class
DistanceQuery
class
FieldsQuery
class
NotQuery
class
OrQuery
class
SimpleTerm
class
SrndPrefixQuery
class
SrndTermQuery
class
SrndTruncQuery
Methods in org.apache.lucene.queryParser.surround.query that return SrndQuery Modifier and Type Method Description SrndQuery
ComposedQuery. getSubQuery(int qn)
Constructors in org.apache.lucene.queryParser.surround.query with parameters of type SrndQuery Constructor Description FieldsQuery(SrndQuery q, String fieldName, char fieldOp)
FieldsQuery(SrndQuery q, List<String> fieldNames, char fieldOp)
Constructor parameters in org.apache.lucene.queryParser.surround.query with type arguments of type SrndQuery Constructor Description AndQuery(List<SrndQuery> queries, boolean inf, String opName)
DistanceQuery(List<SrndQuery> queries, boolean infix, int opDistance, String opName, boolean ordered)
NotQuery(List<SrndQuery> queries, String opName)
OrQuery(List<SrndQuery> queries, boolean infix, String opName)
-