public enum TaskCleanupResult extends Enum<TaskCleanupResult>
| Modifier and Type | Method and Description |
|---|---|
static TaskCleanupResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskCleanupResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskCleanupResult SUCCESS
public static final TaskCleanupResult WAITING
public static final TaskCleanupResult ERROR
public static TaskCleanupResult[] values()
for (TaskCleanupResult c : TaskCleanupResult.values()) System.out.println(c);
public static TaskCleanupResult 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.