public static enum RegressionMetricsConfig.SampleType extends Enum<RegressionMetricsConfig.SampleType>
| Enum Constant and Description |
|---|
MAX |
MEAN |
MIN |
STDDEV_NOPOP |
STDDEV_POP |
SUM |
VARIANCE_NOPOP |
VARIANCE_POP |
| Modifier and Type | Method and Description |
|---|---|
static RegressionMetricsConfig.SampleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegressionMetricsConfig.SampleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegressionMetricsConfig.SampleType SUM
public static final RegressionMetricsConfig.SampleType MEAN
public static final RegressionMetricsConfig.SampleType VARIANCE_POP
public static final RegressionMetricsConfig.SampleType VARIANCE_NOPOP
public static final RegressionMetricsConfig.SampleType MAX
public static final RegressionMetricsConfig.SampleType MIN
public static final RegressionMetricsConfig.SampleType STDDEV_POP
public static final RegressionMetricsConfig.SampleType STDDEV_NOPOP
public static RegressionMetricsConfig.SampleType[] values()
for (RegressionMetricsConfig.SampleType c : RegressionMetricsConfig.SampleType.values()) System.out.println(c);
public static RegressionMetricsConfig.SampleType 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 © 2022. All rights reserved.