public enum WorkerMetricType extends Enum<WorkerMetricType>
| Enum Constant and Description |
|---|
CPU |
MEMORY |
NETWORK_IN |
NETWORK_OUT |
THROUGHPUT |
| Modifier and Type | Method and Description |
|---|---|
static WorkerMetricType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkerMetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkerMetricType CPU
public static final WorkerMetricType MEMORY
public static final WorkerMetricType NETWORK_IN
public static final WorkerMetricType NETWORK_OUT
public static final WorkerMetricType THROUGHPUT
public static WorkerMetricType[] values()
for (WorkerMetricType c : WorkerMetricType.values()) System.out.println(c);
public static WorkerMetricType 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 © 2024. All rights reserved.