public enum MetricType extends Enum<MetricType>
| Enum Constant and Description |
|---|
CLASS_LOADER |
CLASSIFICATION |
CUSTOM_MULTI_LABEL |
GPU |
JVM_GC |
JVM_MEMORY |
JVM_THREAD |
LOGGING_METRICS |
NATIVE |
PROCESSOR |
REGRESSION |
| Modifier and Type | Method and Description |
|---|---|
static MetricType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricType CLASS_LOADER
public static final MetricType JVM_MEMORY
public static final MetricType JVM_GC
public static final MetricType PROCESSOR
public static final MetricType JVM_THREAD
public static final MetricType LOGGING_METRICS
public static final MetricType NATIVE
public static final MetricType GPU
public static final MetricType CLASSIFICATION
public static final MetricType REGRESSION
public static final MetricType CUSTOM_MULTI_LABEL
public static MetricType[] values()
for (MetricType c : MetricType.values()) System.out.println(c);
public static MetricType 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.