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