Uses of Class
org.apache.lucene.queryParser.core.nodes.FieldQueryNode
-
Packages that use FieldQueryNode Package Description org.apache.lucene.queryParser.core.nodes Contains query nodes that are commonly used by query parser implementationsorg.apache.lucene.queryParser.standard.nodes Standard Lucene Query Nodes -
-
Uses of FieldQueryNode in org.apache.lucene.queryParser.core.nodes
Subclasses of FieldQueryNode in org.apache.lucene.queryParser.core.nodes Modifier and Type Class Description class
FuzzyQueryNode
AFuzzyQueryNode
represents a element that contains field/text/similarity tupleclass
ParametricQueryNode
Deprecated.this class will be removed in future.class
QuotedFieldQueryNode
AQuotedFieldQueryNode
represents phrase query.Methods in org.apache.lucene.queryParser.core.nodes that return FieldQueryNode Modifier and Type Method Description FieldQueryNode
FieldQueryNode. cloneTree()
-
Uses of FieldQueryNode in org.apache.lucene.queryParser.standard.nodes
Subclasses of FieldQueryNode in org.apache.lucene.queryParser.standard.nodes Modifier and Type Class Description class
PrefixWildcardQueryNode
APrefixWildcardQueryNode
represents wildcardquery that matches abc* or *.class
WildcardQueryNode
AWildcardQueryNode
represents wildcard query This does not apply to phrases.Methods in org.apache.lucene.queryParser.standard.nodes with parameters of type FieldQueryNode Modifier and Type Method Description void
RangeQueryNode. setBounds(FieldQueryNode lower, FieldQueryNode upper, boolean lowerInclusive, boolean upperInclusive)
Deprecated.Sets lower and upper bounds.Constructors in org.apache.lucene.queryParser.standard.nodes with parameters of type FieldQueryNode Constructor Description PrefixWildcardQueryNode(FieldQueryNode fqn)
TermRangeQueryNode(FieldQueryNode lower, FieldQueryNode upper, boolean lowerInclusive, boolean upperInclusive)
Constructs aTermRangeQueryNode
object using the givenFieldQueryNode
as its bounds.WildcardQueryNode(FieldQueryNode fqn)
-