Package pulse.tasks.listeners
Enum TaskRepositoryEvent.State
- java.lang.Object
-
- java.lang.Enum<TaskRepositoryEvent.State>
-
- pulse.tasks.listeners.TaskRepositoryEvent.State
-
- All Implemented Interfaces:
Serializable
,Comparable<TaskRepositoryEvent.State>
- Enclosing class:
- TaskRepositoryEvent
public static enum TaskRepositoryEvent.State extends Enum<TaskRepositoryEvent.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEST_MODEL_SELECTED
Indicates the task has discarded superfluous calculations.NEW_STATE
A new state has been loaded.SHUTDOWN
The repository has been shut down/TASK_ADDED
Indicates a task has been added to the repository.TASK_BROWSING_REQUEST
An external request has been received to browse previous calculations.TASK_CRITERION_SWITCH
The task changed its selection criterion.TASK_FINISHED
A task has finished executing.TASK_MODEL_SWITCH
The task has switched to a new model.TASK_REMOVED
A task has been removed from the repository.TASK_RESET
A task has been reset.TASK_SUBMITTED
A task has been submitted for execution.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskRepositoryEvent.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static TaskRepositoryEvent.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TASK_ADDED
public static final TaskRepositoryEvent.State TASK_ADDED
Indicates a task has been added to the repository.
-
TASK_REMOVED
public static final TaskRepositoryEvent.State TASK_REMOVED
A task has been removed from the repository.
-
TASK_SUBMITTED
public static final TaskRepositoryEvent.State TASK_SUBMITTED
A task has been submitted for execution.
-
TASK_FINISHED
public static final TaskRepositoryEvent.State TASK_FINISHED
A task has finished executing.
-
TASK_RESET
public static final TaskRepositoryEvent.State TASK_RESET
A task has been reset.
-
TASK_BROWSING_REQUEST
public static final TaskRepositoryEvent.State TASK_BROWSING_REQUEST
An external request has been received to browse previous calculations.
-
TASK_MODEL_SWITCH
public static final TaskRepositoryEvent.State TASK_MODEL_SWITCH
The task has switched to a new model.
-
TASK_CRITERION_SWITCH
public static final TaskRepositoryEvent.State TASK_CRITERION_SWITCH
The task changed its selection criterion.
-
BEST_MODEL_SELECTED
public static final TaskRepositoryEvent.State BEST_MODEL_SELECTED
Indicates the task has discarded superfluous calculations.
-
NEW_STATE
public static final TaskRepositoryEvent.State NEW_STATE
A new state has been loaded.
-
SHUTDOWN
public static final TaskRepositoryEvent.State SHUTDOWN
The repository has been shut down/
-
-
Method Detail
-
values
public static TaskRepositoryEvent.State[] 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 (TaskRepositoryEvent.State c : TaskRepositoryEvent.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskRepositoryEvent.State 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 nameNullPointerException
- if the argument is null
-
-