Package | Description |
---|---|
org.apache.lucene.queryParser.surround.query |
This package contains SrndQuery and its subclasses.
|
org.apache.lucene.search.regex |
Regular expression Query.
|
org.apache.lucene.search.spans |
The calculus of spans.
|
Modifier and Type | Method and Description |
---|---|
SpanQuery |
SpanNearClauseFactory.makeSpanNearClause() |
Modifier and Type | Method and Description |
---|---|
protected void |
SpanNearClauseFactory.addSpanQueryWeighted(SpanQuery sq,
float weight) |
Modifier and Type | Class and Description |
---|---|
class |
SpanRegexQuery
A SpanQuery version of
RegexQuery allowing regular expression
queries to be nested within other SpanQuery subclasses. |
Modifier and Type | Class and Description |
---|---|
class |
SpanFirstQuery
Matches spans near the beginning of a field.
|
class |
SpanNearQuery
Matches spans which are near one another.
|
class |
SpanNotQuery
Removes matches which overlap with another SpanQuery.
|
class |
SpanOrQuery
Matches the union of its clauses.
|
class |
SpanTermQuery
Matches spans containing a term.
|
Modifier and Type | Method and Description |
---|---|
SpanQuery[] |
SpanNearQuery.getClauses()
Return the clauses whose spans are matched.
|
SpanQuery[] |
SpanOrQuery.getClauses()
Return the clauses whose spans are matched.
|
SpanQuery |
SpanNotQuery.getExclude()
Return the SpanQuery whose matches must not overlap those returned.
|
SpanQuery |
SpanNotQuery.getInclude()
Return the SpanQuery whose matches are filtered.
|
SpanQuery |
SpanFirstQuery.getMatch()
Return the SpanQuery whose matches are filtered.
|
Constructor and Description |
---|
SpanFirstQuery(SpanQuery match,
int end)
Construct a SpanFirstQuery matching spans in
match whose end
position is less than or equal to end . |
SpanNearQuery(SpanQuery[] clauses,
int slop,
boolean inOrder)
Construct a SpanNearQuery.
|
SpanNotQuery(SpanQuery include,
SpanQuery exclude)
Construct a SpanNotQuery matching spans from
include which
have no overlap with spans from exclude . |
SpanOrQuery(SpanQuery[] clauses)
Construct a SpanOrQuery merging the provided clauses.
|
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.