Class Correction
- java.lang.Object
-
- org.elasticsearch.search.suggest.phrase.Correction
-
- All Implemented Interfaces:
java.lang.Comparable<Correction>
public final class Correction extends java.lang.Object implements java.lang.Comparable<Correction>
-
-
Field Summary
Fields Modifier and Type Field Description DirectCandidateGenerator.Candidate[]candidatesstatic Correction[]EMPTYdoublescore
-
Constructor Summary
Constructors Constructor Description Correction(double score, DirectCandidateGenerator.Candidate[] candidates)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(Correction other)Lower scores sorts first; if scores are equal, than later terms (zzz) sort first .org.apache.lucene.util.BytesRefjoin(org.apache.lucene.util.BytesRef separator)org.apache.lucene.util.BytesRefjoin(org.apache.lucene.util.BytesRef separator, org.apache.lucene.util.BytesRefBuilder result, org.apache.lucene.util.BytesRef preTag, org.apache.lucene.util.BytesRef postTag)org.apache.lucene.util.BytesRefjoin(org.apache.lucene.util.BytesRef separator, org.apache.lucene.util.BytesRef preTag, org.apache.lucene.util.BytesRef postTag)java.lang.StringtoString()
-
-
-
Field Detail
-
EMPTY
public static final Correction[] EMPTY
-
score
public double score
-
candidates
public final DirectCandidateGenerator.Candidate[] candidates
-
-
Constructor Detail
-
Correction
public Correction(double score, DirectCandidateGenerator.Candidate[] candidates)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
join
public org.apache.lucene.util.BytesRef join(org.apache.lucene.util.BytesRef separator)
-
join
public org.apache.lucene.util.BytesRef join(org.apache.lucene.util.BytesRef separator, org.apache.lucene.util.BytesRef preTag, org.apache.lucene.util.BytesRef postTag)
-
join
public org.apache.lucene.util.BytesRef join(org.apache.lucene.util.BytesRef separator, org.apache.lucene.util.BytesRefBuilder result, org.apache.lucene.util.BytesRef preTag, org.apache.lucene.util.BytesRef postTag)
-
compareTo
public int compareTo(Correction other)
Lower scores sorts first; if scores are equal, than later terms (zzz) sort first .- Specified by:
compareToin interfacejava.lang.Comparable<Correction>
-
-