public class ScaleFloatFunction extends ValueSource
This implementation currently traverses all of the source values to obtain their min and max.
This implementation currently cannot distinguish when documents have been deleted or documents that have no value, and 0.0 values will be used for these cases. This means that if values are normally all greater than 0.0, one can still end up with 0.0 as the min value to map from. In these cases, an appropriate map() function could be used as a workaround to change 0.0 to a value in the real range.
| Modifier and Type | Field and Description |
|---|---|
protected float |
max |
protected float |
min |
protected ValueSource |
source |
| Constructor and Description |
|---|
ScaleFloatFunction(ValueSource source,
float min,
float max) |
| Modifier and Type | Method and Description |
|---|---|
void |
createWeight(Map context,
Searcher searcher)
Implementations should propagate createWeight to sub-ValueSources which can optionally store
weight info in the context.
|
String |
description()
description of field, used in explain()
|
boolean |
equals(Object o) |
DocValues |
getValues(Map context,
IndexReader reader)
Gets the values for this reader and the context that was previously
passed to createWeight()
|
int |
hashCode() |
getSortField, getValues, newContext, toStringprotected final ValueSource source
protected final float min
protected final float max
public ScaleFloatFunction(ValueSource source, float min, float max)
public String description()
ValueSourcedescription in class ValueSourcepublic DocValues getValues(Map context, IndexReader reader) throws IOException
ValueSourcegetValues in class ValueSourceIOExceptionpublic void createWeight(Map context, Searcher searcher) throws IOException
ValueSourcecreateWeight in class ValueSourceIOExceptionpublic int hashCode()
hashCode in class ValueSourcepublic boolean equals(Object o)
equals in class ValueSource