Enum RegressionMetricsConfig.SampleType
- java.lang.Object
-
- java.lang.Enum<RegressionMetricsConfig.SampleType>
-
- ai.konduit.serving.config.metrics.impl.RegressionMetricsConfig.SampleType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RegressionMetricsConfig.SampleType>
- Enclosing class:
- RegressionMetricsConfig
public static enum RegressionMetricsConfig.SampleType extends java.lang.Enum<RegressionMetricsConfig.SampleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MAXMEANMINSTDDEV_NOPOPSTDDEV_POPSUMVARIANCE_NOPOPVARIANCE_POP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RegressionMetricsConfig.SampleTypevalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
SUM
public static final RegressionMetricsConfig.SampleType SUM
-
MEAN
public static final RegressionMetricsConfig.SampleType MEAN
-
VARIANCE_POP
public static final RegressionMetricsConfig.SampleType VARIANCE_POP
-
VARIANCE_NOPOP
public static final RegressionMetricsConfig.SampleType VARIANCE_NOPOP
-
MAX
public static final RegressionMetricsConfig.SampleType MAX
-
MIN
public static final RegressionMetricsConfig.SampleType MIN
-
STDDEV_POP
public static final RegressionMetricsConfig.SampleType STDDEV_POP
-
STDDEV_NOPOP
public static final RegressionMetricsConfig.SampleType STDDEV_NOPOP
-
-
Method Detail
-
values
public static RegressionMetricsConfig.SampleType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RegressionMetricsConfig.SampleType c : RegressionMetricsConfig.SampleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegressionMetricsConfig.SampleType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-