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 |
static boolean |
allExists(int doc,
FunctionValues values1,
FunctionValues values2)
Equivalent to the
FunctionValues[] method with the same name, but optimized for
dealing with exactly 2 arguments. |
static boolean |
anyExists(int doc,
FunctionValues[] values)
Helper utility for
FunctionValues |
static boolean |
anyExists(int doc,
FunctionValues values1,
FunctionValues values2)
Equivalent to the
FunctionValues[] method with the same name, but optimized for
dealing with exactly 2 arguments. |
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) |
asDoubleValuesSource, asLongValuesSource, fromDoubleValuesSource, getSortField, getValues, newContext, toString
protected final List<ValueSource> sources
public MultiFunction(List<ValueSource> sources)
protected abstract String name()
public String description()
ValueSource
description
in class ValueSource
public static boolean allExists(int doc, FunctionValues[] values) throws IOException
FunctionValues
values
FunctionValues.exists(int)
for the specified doc, else false.IOException
public static boolean anyExists(int doc, FunctionValues[] values) throws IOException
FunctionValues
values
FunctionValues.exists(int)
for the specified doc, else false.IOException
public static boolean allExists(int doc, FunctionValues values1, FunctionValues values2) throws IOException
FunctionValues[]
method with the same name, but optimized for
dealing with exactly 2 arguments.values
FunctionValues.exists(int)
for the specified doc, else false.IOException
anyExists(int,FunctionValues[])
public static boolean anyExists(int doc, FunctionValues values1, FunctionValues values2) throws IOException
FunctionValues[]
method with the same name, but optimized for
dealing with exactly 2 arguments.values
FunctionValues.exists(int)
for the specified doc, else false.IOException
anyExists(int,FunctionValues[])
public static String description(String name, List<ValueSource> sources)
public static FunctionValues[] valsArr(List<ValueSource> sources, Map fcontext, LeafReaderContext readerContext) throws IOException
IOException
public static String toString(String name, FunctionValues[] valsArr, int doc) throws IOException
IOException
public void createWeight(Map context, IndexSearcher searcher) throws IOException
ValueSource
createWeight
in class ValueSource
IOException
public int hashCode()
hashCode
in class ValueSource
public boolean equals(Object o)
equals
in class ValueSource
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.