public abstract class ValueSource extends Object
Constructor and Description |
---|
ValueSource() |
Modifier and Type | Method and Description |
---|---|
DoubleValuesSource |
asDoubleValuesSource()
Expose this ValueSource as a DoubleValuesSource
|
LongValuesSource |
asLongValuesSource()
Expose this ValueSource as a LongValuesSource
|
void |
createWeight(Map context,
IndexSearcher searcher)
Implementations should propagate createWeight to sub-ValueSources which can optionally store
weight info in the context.
|
abstract String |
description()
description of field, used in explain()
|
abstract boolean |
equals(Object o) |
static ValueSource |
fromDoubleValuesSource(DoubleValuesSource in) |
SortField |
getSortField(boolean reverse)
EXPERIMENTAL: This method is subject to change.
|
abstract FunctionValues |
getValues(Map context,
LeafReaderContext readerContext)
Gets the values for this reader and the context that was previously
passed to createWeight().
|
abstract int |
hashCode() |
static Map |
newContext(IndexSearcher searcher)
Returns a new non-threadsafe context map.
|
String |
toString() |
public abstract FunctionValues getValues(Map context, LeafReaderContext readerContext) throws IOException
IOException
public abstract String description()
public void createWeight(Map context, IndexSearcher searcher) throws IOException
IOException
public static Map newContext(IndexSearcher searcher)
public LongValuesSource asLongValuesSource()
public DoubleValuesSource asDoubleValuesSource()
public static ValueSource fromDoubleValuesSource(DoubleValuesSource in)
public SortField getSortField(boolean reverse)
Get the SortField for this ValueSource. Uses the getValues(java.util.Map, org.apache.lucene.index.LeafReaderContext)
to populate the SortField.
reverse
- true if this is a reverse sort.SortField
for the ValueSourceCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.