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