public enum WorkerMonitorInfoEnum extends Enum<WorkerMonitorInfoEnum>
| Enum Constant and Description |
|---|
EXECUTION_THREADS_AMOUNT |
FREE_MEMORY |
INBUFFER_CAPACITY |
INBUFFER_SIZE_AVERAGE |
MAX_MEMORY |
MONITOR_END_TIME |
MONITOR_START_TIME |
OUTBUFFER_CAPACITY |
OUTBUFFER_SIZE_AVERAGE |
RUNNING_TASKS_AVERAGE |
TOTAL_MEMORY |
WORKER_ID |
| Modifier and Type | Method and Description |
|---|---|
static WorkerMonitorInfoEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkerMonitorInfoEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkerMonitorInfoEnum WORKER_ID
public static final WorkerMonitorInfoEnum MONITOR_START_TIME
public static final WorkerMonitorInfoEnum MONITOR_END_TIME
public static final WorkerMonitorInfoEnum INBUFFER_CAPACITY
public static final WorkerMonitorInfoEnum INBUFFER_SIZE_AVERAGE
public static final WorkerMonitorInfoEnum OUTBUFFER_CAPACITY
public static final WorkerMonitorInfoEnum OUTBUFFER_SIZE_AVERAGE
public static final WorkerMonitorInfoEnum RUNNING_TASKS_AVERAGE
public static final WorkerMonitorInfoEnum EXECUTION_THREADS_AMOUNT
public static final WorkerMonitorInfoEnum FREE_MEMORY
public static final WorkerMonitorInfoEnum MAX_MEMORY
public static final WorkerMonitorInfoEnum TOTAL_MEMORY
public static WorkerMonitorInfoEnum[] values()
for (WorkerMonitorInfoEnum c : WorkerMonitorInfoEnum.values()) System.out.println(c);
public static WorkerMonitorInfoEnum 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 © 2019. All rights reserved.