|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ToSimulationCoreControlEvents>
fr.lifl.jedi.controllersCore.events.ToSimulationCoreControlEvents
public enum ToSimulationCoreControlEvents
Lists all events that controllers of the
AbstractControlGUIController
class can send to the simulation core.
JEDI V 2.2 |
Created the 3rd april 2009 |
Modified the 5th may 2009 |
Yoann Kubera |
SMAC Team (Systèmes Multi-Agents et Comportement) |
LIFL (Laboratoire d'Informatique Fondamentale de Lille) |
University of Lille, France |
Enum Constant Summary | |
---|---|
TO_CORE_ABORT_SIMULATION
Event thrown to the core in order to abort the simulation. |
|
TO_CORE_EXIT_SIMULATION
Event thrown to the core in order to stop the simulation. |
|
TO_CORE_INITIALIZE_SIMULATION
Event thrown to the core in order to initialize the simulation. |
|
TO_CORE_PAUSE_SIMULATION
Event thrown to the core in order to pause the simulation. |
|
TO_CORE_SIMULATION_STEP_ONCE
Event thrown to the core in order to perform a single simulation step. |
|
TO_CORE_START_SIMULATION
Event thrown to the core in order to start the simulation. |
|
TO_CORE_UNPAUSE_SIMULATION
Event thrown to the core in order to remove the pause in the simulation. |
Method Summary | |
---|---|
static ToSimulationCoreControlEvents |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ToSimulationCoreControlEvents[] |
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 ToSimulationCoreControlEvents TO_CORE_PAUSE_SIMULATION
The pause will take effect at the end of the simulation step.
public static final ToSimulationCoreControlEvents TO_CORE_UNPAUSE_SIMULATION
The simulation will run again at most 100 milleseconds after receiving this message.
public static final ToSimulationCoreControlEvents TO_CORE_START_SIMULATION
The environment has to be initialized before starting the simulation.
public static final ToSimulationCoreControlEvents TO_CORE_INITIALIZE_SIMULATION
The simulation has not to be running. If the simulation is running, the simulation core does not take into account this event.
public static final ToSimulationCoreControlEvents TO_CORE_ABORT_SIMULATION
The simulation has to be running. If the simulation is not running, the simulation core does not take into account this event.
public static final ToSimulationCoreControlEvents TO_CORE_SIMULATION_STEP_ONCE
The simulation has either to be running and being paused, or to be initialized and not to be running. Otherwise, the simulation core does not take into account this event.
public static final ToSimulationCoreControlEvents TO_CORE_EXIT_SIMULATION
Method Detail |
---|
public static ToSimulationCoreControlEvents[] values()
for (ToSimulationCoreControlEvents c : ToSimulationCoreControlEvents.values()) System.out.println(c);
public static ToSimulationCoreControlEvents valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |