@Deprecated public enum RegressionValue extends Enum<RegressionValue>
| Enum Constant and Description |
|---|
CorrCoeff
Deprecated.
|
MAE
Deprecated.
|
MSE
Deprecated.
|
RMSE
Deprecated.
|
RSE
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static RegressionValue |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static RegressionValue[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegressionValue MSE
public static final RegressionValue MAE
public static final RegressionValue RMSE
public static final RegressionValue RSE
public static final RegressionValue CorrCoeff
public static RegressionValue[] values()
for (RegressionValue c : RegressionValue.values()) System.out.println(c);
public static RegressionValue 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 © 2020. All rights reserved.