public enum QuantileModelCombineMethod extends java.lang.Enum<QuantileModelCombineMethod>
| Enum Constant and Description |
|---|
AVG |
HI |
INTERPOLATE |
LO |
| Modifier and Type | Method and Description |
|---|---|
static QuantileModelCombineMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuantileModelCombineMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuantileModelCombineMethod AVG
public static final QuantileModelCombineMethod HI
public static final QuantileModelCombineMethod INTERPOLATE
public static final QuantileModelCombineMethod LO
public static QuantileModelCombineMethod[] values()
for (QuantileModelCombineMethod c : QuantileModelCombineMethod.values()) System.out.println(c);
public static QuantileModelCombineMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null