public abstract class MultiFunction extends ValueSource
ValueSource implementations that wrap multiple
ValueSources and apply their own logic.| Modifier and Type | Class and Description |
|---|---|
class |
MultiFunction.Values |
| Modifier and Type | Field and Description |
|---|---|
protected List<ValueSource> |
sources |
| Constructor and Description |
|---|
MultiFunction(List<ValueSource> sources) |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
allExists(int doc,
FunctionValues... values)
Helper utility for
FunctionValues wrapping multiple FunctionValues |
static boolean |
anyExists(int doc,
FunctionValues... values)
Helper utility for
FunctionValues wrapping multiple FunctionValues |
void |
createWeight(Map context,
IndexSearcher 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()
|
static String |
description(String name,
List<ValueSource> sources) |
boolean |
equals(Object o) |
int |
hashCode() |
protected abstract String |
name() |
static String |
toString(String name,
FunctionValues[] valsArr,
int doc) |
static FunctionValues[] |
valsArr(List<ValueSource> sources,
Map fcontext,
LeafReaderContext readerContext) |
getSortField, getValues, newContext, toStringprotected final List<ValueSource> sources
public MultiFunction(List<ValueSource> sources)
protected abstract String name()
public String description()
ValueSourcedescription in class ValueSourcepublic static boolean allExists(int doc,
FunctionValues... values)
FunctionValues wrapping multiple FunctionValuesvalues
FunctionValues.exists(int) for the specified doc, else false.public static boolean anyExists(int doc,
FunctionValues... values)
FunctionValues wrapping multiple FunctionValuesvalues
FunctionValues.exists(int) for the specified doc, else false.public static String description(String name, List<ValueSource> sources)
public static FunctionValues[] valsArr(List<ValueSource> sources, Map fcontext, LeafReaderContext readerContext) throws IOException
IOExceptionpublic static String toString(String name, FunctionValues[] valsArr, int doc)
public void createWeight(Map context, IndexSearcher searcher) throws IOException
ValueSourcecreateWeight in class ValueSourceIOExceptionpublic int hashCode()
hashCode in class ValueSourcepublic boolean equals(Object o)
equals in class ValueSourceCopyright © 2000-2015 Apache Software Foundation. All Rights Reserved.