Package pulse.ui.frames
Enum TaskControlFrame.Mode
- java.lang.Object
-
- java.lang.Enum<TaskControlFrame.Mode>
-
- pulse.ui.frames.TaskControlFrame.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<TaskControlFrame.Mode>
- Enclosing class:
- TaskControlFrame
public static enum TaskControlFrame.Mode extends Enum<TaskControlFrame.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODEL_COMPARISON
PREVIEW
PROBLEM
SEARCH
TASK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskControlFrame.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static TaskControlFrame.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TASK
public static final TaskControlFrame.Mode TASK
-
PROBLEM
public static final TaskControlFrame.Mode PROBLEM
-
PREVIEW
public static final TaskControlFrame.Mode PREVIEW
-
SEARCH
public static final TaskControlFrame.Mode SEARCH
-
MODEL_COMPARISON
public static final TaskControlFrame.Mode MODEL_COMPARISON
-
-
Method Detail
-
values
public static TaskControlFrame.Mode[] 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 (TaskControlFrame.Mode c : TaskControlFrame.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskControlFrame.Mode 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
-
-