public enum InvocationGridSignal extends java.lang.Enum<InvocationGridSignal>
Enum Constant and Description |
---|
MetadataChanged
The invocation worker should reload any metadata objects.
|
RekeySimulation
Digital twin should rekey the simulation.
|
Reload
The invocation worker should reload class dependencies.
|
RunSimulation
Digital Twin should run a simulation.
|
Shutdown
The invocation worker should shutdown.
|
StartMessageRecording
Digital twin should start message recording.
|
StopMessageRecording
Digital twin should stop message recording.
|
Modifier and Type | Method and Description |
---|---|
static InvocationGridSignal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvocationGridSignal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationGridSignal Shutdown
public static final InvocationGridSignal Reload
public static final InvocationGridSignal MetadataChanged
public static final InvocationGridSignal RunSimulation
public static final InvocationGridSignal RekeySimulation
public static final InvocationGridSignal StartMessageRecording
public static final InvocationGridSignal StopMessageRecording
public static InvocationGridSignal[] values()
for (InvocationGridSignal c : InvocationGridSignal.values()) System.out.println(c);
public static InvocationGridSignal 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 namejava.lang.NullPointerException
- if the argument is null