org.bushe.swing.event
Enum CleanupEvent.Status

java.lang.Object
  extended by java.lang.Enum<CleanupEvent.Status>
      extended by org.bushe.swing.event.CleanupEvent.Status
All Implemented Interfaces:
Serializable, Comparable<CleanupEvent.Status>
Enclosing class:
CleanupEvent

public static enum CleanupEvent.Status
extends Enum<CleanupEvent.Status>

The status of the cleanup.


Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STARTING

public static final CleanupEvent.Status STARTING
Timer has started the cleanup task. Will be followed by at least one more CleanupEvent.


OVER_STOP_THRESHOLD_CLEANING_BEGUN

public static final CleanupEvent.Status OVER_STOP_THRESHOLD_CLEANING_BEGUN
Task has determined there's cleanup to do.


UNDER_STOP_THRESHOLD_CLEANING_CANCELLED

public static final CleanupEvent.Status UNDER_STOP_THRESHOLD_CLEANING_CANCELLED
Task has determined there's no cleanup to do.


FINISHED_CLEANING

public static final CleanupEvent.Status FINISHED_CLEANING
Finished cleaning up task.

Method Detail

values

public static CleanupEvent.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CleanupEvent.Status c : CleanupEvent.Status.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CleanupEvent.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2011 Bushe Enterprises, Inc.. All Rights Reserved.