public static enum DecayParam.ParamType extends Enum<DecayParam.ParamType>
| Enum Constant and Description |
|---|
DATE
适用于Date类型field
|
GEO
适用于Geo-point类型field
|
NUMERIC
适用于Long和Double类型field
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DecayParam.ParamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecayParam.ParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecayParam.ParamType UNKNOWN
public static final DecayParam.ParamType DATE
public static final DecayParam.ParamType GEO
public static final DecayParam.ParamType NUMERIC
public static DecayParam.ParamType[] values()
for (DecayParam.ParamType c : DecayParam.ParamType.values()) System.out.println(c);
public static DecayParam.ParamType 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.