public static enum CheckProcessCondition.ProcessStatus extends java.lang.Enum<CheckProcessCondition.ProcessStatus>
Enum Constant and Description |
---|
NOT_RUNNING
Process is not running.
|
RUNNING
Process is running.
|
Modifier and Type | Method and Description |
---|---|
static CheckProcessCondition.ProcessStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckProcessCondition.ProcessStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckProcessCondition.ProcessStatus RUNNING
public static final CheckProcessCondition.ProcessStatus NOT_RUNNING
public static CheckProcessCondition.ProcessStatus[] values()
for (CheckProcessCondition.ProcessStatus c : CheckProcessCondition.ProcessStatus.values()) System.out.println(c);
public static CheckProcessCondition.ProcessStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null