public static enum SimEvent.DestinationModule extends Enum<SimEvent.DestinationModule>
| Enum Constant and Description |
|---|
EVENT_GENERATOR
Event generator.
|
EVENT_PROCESSOR
Event processor.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SimEvent.DestinationModule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimEvent.DestinationModule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimEvent.DestinationModule EVENT_GENERATOR
public static final SimEvent.DestinationModule EVENT_PROCESSOR
public String toString()
toString in class Enum<SimEvent.DestinationModule>public static SimEvent.DestinationModule valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SimEvent.DestinationModule[] values()
for (SimEvent.DestinationModule c : SimEvent.DestinationModule.values()) System.out.println(c);