Class WeightedTerm
- java.lang.Object
-
- org.apache.lucene.search.highlight.WeightedTerm
-
- Direct Known Subclasses:
WeightedSpanTerm
public class WeightedTerm extends java.lang.ObjectLightweight class to hold term and a weight value used for scoring this term
-
-
Constructor Summary
Constructors Constructor Description WeightedTerm(float weight, java.lang.String term)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTerm()floatgetWeight()voidsetTerm(java.lang.String term)voidsetWeight(float weight)
-
-
-
Method Detail
-
getTerm
public java.lang.String getTerm()
- Returns:
- the term value (stemmed)
-
getWeight
public float getWeight()
- Returns:
- the weight associated with this term
-
setTerm
public void setTerm(java.lang.String term)
- Parameters:
term- the term value (stemmed)
-
setWeight
public void setWeight(float weight)
- Parameters:
weight- the weight associated with this term
-
-