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