Package org.opensearch.search.suggest
Class Suggest.Suggestion.Entry.Option
java.lang.Object
org.opensearch.search.suggest.Suggest.Suggestion.Entry.Option
- All Implemented Interfaces:
Writeable
,org.opensearch.common.xcontent.ToXContent
,org.opensearch.common.xcontent.ToXContentFragment
- Direct Known Subclasses:
CompletionSuggestion.Entry.Option
,PhraseSuggestion.Entry.Option
,TermSuggestion.Entry.Option
- Enclosing class:
- Suggest.Suggestion.Entry<O extends Suggest.Suggestion.Entry.Option>
public abstract static class Suggest.Suggestion.Entry.Option
extends Object
implements Writeable, org.opensearch.common.xcontent.ToXContentFragment
Contains the suggested text with its document frequency and score.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.opensearch.common.xcontent.ToXContent
org.opensearch.common.xcontent.ToXContent.DelegatingMapParams, org.opensearch.common.xcontent.ToXContent.MapParams, org.opensearch.common.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.opensearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.opensearch.common.ParseField
static final org.opensearch.common.ParseField
static final org.opensearch.common.ParseField
static final org.opensearch.common.ParseField
Fields inherited from interface org.opensearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
float
getScore()
getText()
int
hashCode()
protected void
mergeInto
(Suggest.Suggestion.Entry.Option otherOption) protected void
setScore
(float score) org.opensearch.common.xcontent.XContentBuilder
toXContent
(org.opensearch.common.xcontent.XContentBuilder builder, org.opensearch.common.xcontent.ToXContent.Params params) void
writeTo
(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opensearch.common.xcontent.ToXContentFragment
isFragment
-
Field Details
-
TEXT
public static final org.opensearch.common.ParseField TEXT -
HIGHLIGHTED
public static final org.opensearch.common.ParseField HIGHLIGHTED -
SCORE
public static final org.opensearch.common.ParseField SCORE -
COLLATE_MATCH
public static final org.opensearch.common.ParseField COLLATE_MATCH
-
-
Constructor Details
-
Option
-
Option
-
Option
-
Option
- Throws:
IOException
-
-
Method Details
-
getText
- Returns:
- The actual suggested text.
-
getHighlighted
- Returns:
- Copy of suggested text with changes from user supplied text highlighted.
-
getScore
public float getScore()- Returns:
- The score based on the edit distance difference between the suggested term and the term in the suggest text.
-
collateMatch
public boolean collateMatch()- Returns:
- true if collation has found a match for the entry.
if collate was not set, the value defaults to
true
-
setScore
protected void setScore(float score) -
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
toXContent
public org.opensearch.common.xcontent.XContentBuilder toXContent(org.opensearch.common.xcontent.XContentBuilder builder, org.opensearch.common.xcontent.ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceorg.opensearch.common.xcontent.ToXContent
- Throws:
IOException
-
mergeInto
-
equals
-
hashCode
public int hashCode()
-