public final class PhraseNot extends Phrase
Phrase.Parameter
parameters
Constructor and Description |
---|
PhraseNot()
Constructor.
|
PhraseNot(Phrase includePhrase,
Phrase excludePhrase)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
PhraseNot |
clone() |
boolean |
equals(Object other) |
int |
getEndOffset()
Get the end offset (0 indexed, exclusive) for this term in the original query string.
|
Phrase |
getExcludePhrase() |
Phrase |
getIncludePhrase() |
int |
getStartOffset()
Get the start offset (0 indexed, inclusive) for this term in the original query string.
|
int |
hashCode() |
Phrase |
rewrite(PhraseHandler handler)
Recursively rewrite this phrase using
handler . |
Phrase |
rewriteChildren(PhraseHandler handler)
Rewrite any children of this phrase using
handler . |
void |
setExcludePhrase(Phrase value) |
void |
setIncludePhrase(Phrase value) |
void |
toString(StringBuilder buffer,
boolean compact)
Appends the string representation of this query to
buffer . |
containsParameters, containsParameters, copyParameters, getBoost, getParameter, getParameter, getParameter, getParameter, getParameterInternal, isMatchAll, parameters, parseIntParameter, removeParameter, setBoost, setParameter, setParameters, toArray, toString, toString
public int getStartOffset()
This value is set during parsing and indicates the start offset into the original query string that this term represents. In general, offsets should not be set/modified by query transformers and it is recommended that start and end offsets are set to zero when cloning.
NOTE: if Phrase.getStartOffset()
== Phrase.getEndOffset()
, this indicates that the term did not come from a parsed query string.
getStartOffset
in class Phrase
public int getEndOffset()
This value is set during parsing and indicates the end offset of the original query string that this term represents. In general, offsets should not be set/modified by query transformers and it is recommended that start and end offsets are set to zero when cloning.
NOTE: if Phrase.getStartOffset()
== Phrase.getEndOffset()
, this indicates that the term did not come from a parsed query string.
getEndOffset
in class Phrase
public Phrase getIncludePhrase()
public void setIncludePhrase(Phrase value)
public Phrase getExcludePhrase()
public void setExcludePhrase(Phrase value)
public Phrase rewrite(PhraseHandler handler)
handler
.
NOTE: If a phrase has any children, the phrase itself will be passed to handler
first, prior to its children.
If handler
returns a new phrase, its children will not be traversed automatically.
public Phrase rewriteChildren(PhraseHandler handler)
handler
.
Returns the modified phrase, which may be null
if all children were removed by handler
.
This method may have no effect if this Phrase
represents a leaf in the tree.
NOTE: child phrases are not recursively traversed.
rewriteChildren
in class Phrase
public void toString(StringBuilder buffer, boolean compact)
buffer
.Copyright © 2018 Attivio, Inc. All Rights Reserved.
PATENT NOTICE: Attivio, Inc. Software Related Patents. With respect to the Attivio software product(s) being used, the following patents apply: Querying Joined Data Within A Search Engine Index: United States Patent No.(s): 8,073,840. Ordered Processing of Groups of Messages: U.S. Patent No.(s) 8,495,656. Signal processing approach to sentiment analysis for entities in documents: U.S. Patent No.(s) 8,725,494. Other U.S. and International Patents Pending.