public static enum CleanupEvent.Status extends Enum<CleanupEvent.Status>
Enum Constant and Description |
---|
FINISHED_CLEANING
Finished cleaning up task.
|
OVER_STOP_THRESHOLD_CLEANING_BEGUN
Task has determined there's cleanup to do.
|
STARTING
Timer has started the cleanup task.
|
UNDER_STOP_THRESHOLD_CLEANING_CANCELLED
Task has determined there's no cleanup to do.
|
Modifier and Type | Method and Description |
---|---|
static CleanupEvent.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CleanupEvent.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CleanupEvent.Status STARTING
public static final CleanupEvent.Status OVER_STOP_THRESHOLD_CLEANING_BEGUN
public static final CleanupEvent.Status UNDER_STOP_THRESHOLD_CLEANING_CANCELLED
public static final CleanupEvent.Status FINISHED_CLEANING
public static CleanupEvent.Status[] values()
for (CleanupEvent.Status c : CleanupEvent.Status.values()) System.out.println(c);
public static CleanupEvent.Status 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 © 2013 Bushe Enterprises, Inc.. All rights reserved.