Uses of Class
org.apache.lucene.monitor.QueryTree
-
Packages that use QueryTree Package Description org.apache.lucene.monitor Monitoring framework -
-
Uses of QueryTree in org.apache.lucene.monitor
Subclasses of QueryTree in org.apache.lucene.monitor Modifier and Type Class Description private static classQueryTree.ConjunctionQueryTreeprivate static classQueryTree.DisjunctionQueryTreeFields in org.apache.lucene.monitor with type parameters of type QueryTree Modifier and Type Field Description (package private) java.util.List<java.util.function.Function<TermWeightor,QueryTree>>QueryAnalyzer.QueryBuilder. children(package private) java.util.List<QueryTree>QueryTree.ConjunctionQueryTree. children(package private) java.util.List<QueryTree>QueryTree.DisjunctionQueryTree. childrenprivate static java.util.Comparator<QueryTree>QueryTree.ConjunctionQueryTree. COMPARATORprivate java.util.function.BiFunction<Query,TermWeightor,QueryTree>QueryAnalyzer. unknownQueryMapperMethods in org.apache.lucene.monitor that return QueryTree Modifier and Type Method Description static QueryTreeQueryTree. anyTerm(java.lang.String reason)Returns a leaf node that will match any documentQueryTreeQueryAnalyzer.Disjunction. apply(TermWeightor termWeightor)QueryTreeQueryAnalyzer.QueryBuilder. apply(TermWeightor termWeightor)(package private) QueryTreeQueryAnalyzer. buildTree(Query luceneQuery, TermWeightor weightor)Create aQueryTreefrom a passed in Query or Filterstatic QueryTreeQueryTree. conjunction(java.util.List<java.util.function.Function<TermWeightor,QueryTree>> children, TermWeightor weightor)Returns a conjunction of a set of child nodes(package private) static QueryTreeQueryTree. conjunction(QueryTree... children)static QueryTreeQueryTree. disjunction(java.util.List<java.util.function.Function<TermWeightor,QueryTree>> children, TermWeightor weightor)Returns a disjunction of a set of child nodes(package private) static QueryTreeQueryTree. disjunction(QueryTree... children)QueryTreeCustomQueryHandler. handleQuery(Query query, TermWeightor termWeightor)Builds aQueryTreenode from a queryQueryTreeRegexpQueryHandler. handleQuery(Query q, TermWeightor termWeightor)static QueryTreeQueryTree. term(java.lang.String field, BytesRef term, double weight)Returns a leaf node for a particular term and weight The weight must be greater than 0static QueryTreeQueryTree. term(Term term, double weight)Returns a leaf node for a particular term and weight The weight must be greater than 0static QueryTreeQueryTree. term(Term term, TermWeightor weightor)Returns a leaf node for a particular termMethods in org.apache.lucene.monitor that return types with arguments of type QueryTree Modifier and Type Method Description private static java.util.function.BiFunction<Query,TermWeightor,QueryTree>QueryAnalyzer. buildMapper(java.util.List<CustomQueryHandler> mappers)Methods in org.apache.lucene.monitor with parameters of type QueryTree Modifier and Type Method Description DocumentMultipassTermFilteredPresearcher. buildQueryDocument(QueryTree querytree)protected DocumentTermFilteredPresearcher. buildQueryDocument(QueryTree querytree)Builds aDocumentfrom the terms extracted from a queryprotected java.util.Map<java.lang.String,BytesRefHash>TermFilteredPresearcher. collectTerms(QueryTree querytree)Collects terms from aQueryTreeand maps them per-field(package private) static QueryTreeQueryTree. conjunction(QueryTree... children)(package private) static QueryTreeQueryTree. disjunction(QueryTree... children)Method parameters in org.apache.lucene.monitor with type arguments of type QueryTree Modifier and Type Method Description static QueryTreeQueryTree. conjunction(java.util.List<java.util.function.Function<TermWeightor,QueryTree>> children, TermWeightor weightor)Returns a conjunction of a set of child nodesstatic QueryTreeQueryTree. disjunction(java.util.List<java.util.function.Function<TermWeightor,QueryTree>> children, TermWeightor weightor)Returns a disjunction of a set of child nodesConstructor parameters in org.apache.lucene.monitor with type arguments of type QueryTree Constructor Description ConjunctionQueryTree(java.util.List<QueryTree> children)DisjunctionQueryTree(java.util.List<QueryTree> children)
-