Uses of Class
org.apache.lucene.queryparser.flexible.standard.StandardQueryParser
-
Packages that use StandardQueryParser Package Description org.apache.lucene.queryparser.flexible.precedence Precedence Query Parser Implementation -
-
Uses of StandardQueryParser in org.apache.lucene.queryparser.flexible.precedence
Subclasses of StandardQueryParser in org.apache.lucene.queryparser.flexible.precedence Modifier and Type Class Description class
PrecedenceQueryParser
This query parser works exactly as the standard query parser (StandardQueryParser
), except that it respect the boolean precedence, so <a AND b OR c AND d> is parsed to <(+a +b) (+c +d)> instead of <+a +b +c +d>.
-