public static enum FunctionsScoreQuery.CombineMode extends Enum<FunctionsScoreQuery.CombineMode>
| Enum Constant and Description |
|---|
AVG |
MAX |
MIN |
MULTIPLY |
REPLACE |
SUM |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static FunctionsScoreQuery.CombineMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionsScoreQuery.CombineMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionsScoreQuery.CombineMode UNKNOWN
public static final FunctionsScoreQuery.CombineMode MULTIPLY
public static final FunctionsScoreQuery.CombineMode AVG
public static final FunctionsScoreQuery.CombineMode MAX
public static final FunctionsScoreQuery.CombineMode SUM
public static final FunctionsScoreQuery.CombineMode MIN
public static final FunctionsScoreQuery.CombineMode REPLACE
public static FunctionsScoreQuery.CombineMode[] values()
for (FunctionsScoreQuery.CombineMode c : FunctionsScoreQuery.CombineMode.values()) System.out.println(c);
public static FunctionsScoreQuery.CombineMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All Rights Reserved.