public static enum ExecRequest.Options extends java.lang.Enum<ExecRequest.Options>
Enum Constant and Description |
---|
DISCARD_OUTPUT
Process output will be dropped by node server
|
FAIL_IF_EXISTS
Refuse the execution if a process with the same group/name exists
|
FAIL_IF_GROUP_EXISTS
Refuse the execution if a process from the same group is already
running
|
REPLACE_IF_EXISTS
Replace the process if one with the same group/name exists
|
Modifier and Type | Method and Description |
---|---|
static ExecRequest.Options |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecRequest.Options[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecRequest.Options DISCARD_OUTPUT
public static final ExecRequest.Options FAIL_IF_GROUP_EXISTS
public static final ExecRequest.Options FAIL_IF_EXISTS
public static final ExecRequest.Options REPLACE_IF_EXISTS
public static ExecRequest.Options[] values()
for (ExecRequest.Options c : ExecRequest.Options.values()) System.out.println(c);
public static ExecRequest.Options 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 nullCopyright © 2021. All Rights Reserved.