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