public static enum ExecutionFile.DeletePolicy extends java.lang.Enum<ExecutionFile.DeletePolicy>
| Enum Constant and Description |
|---|
ALWAYS |
NEVER
Never delete the produced file (required for other use)
|
WHEN_RETRIEVABLE
Delete only when it can be retrieved again later
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionFile.DeletePolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionFile.DeletePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionFile.DeletePolicy ALWAYS
public static final ExecutionFile.DeletePolicy NEVER
public static final ExecutionFile.DeletePolicy WHEN_RETRIEVABLE
public static ExecutionFile.DeletePolicy[] values()
for (ExecutionFile.DeletePolicy c : ExecutionFile.DeletePolicy.values()) System.out.println(c);
public static ExecutionFile.DeletePolicy 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