|
MOEA Framework 2.12 API Specification |
|||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ControllerEvent.Type>
org.moeaframework.analysis.diagnostics.ControllerEvent.Type
public static enum ControllerEvent.Type
Enumeration of controller event types.
Enum Constant Summary | |
---|---|
MODEL_CHANGED
Indicates the underlying data model has changed. |
|
PROGRESS_CHANGED
Indicates the progress of the evaluation has changed. |
|
STATE_CHANGED
Indicates the state of the controller changed. |
|
VIEW_CHANGED
Indicates the viewing options changed. |
Method Summary | |
---|---|
static ControllerEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ControllerEvent.Type[] |
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 |
---|
public static final ControllerEvent.Type STATE_CHANGED
Controller.isRunning()
.
public static final ControllerEvent.Type MODEL_CHANGED
public static final ControllerEvent.Type PROGRESS_CHANGED
Controller.getRunProgress()
and
Controller.getOverallProgress()
.
public static final ControllerEvent.Type VIEW_CHANGED
DiagnosticTool
.
Method Detail |
---|
public static ControllerEvent.Type[] values()
for (ControllerEvent.Type c : ControllerEvent.Type.values()) System.out.println(c);
public static ControllerEvent.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
MOEA Framework 2.12 API Specification |
|||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |