Package | Description |
---|---|
com.net2plan.interfaces.simulation |
Provides a set of classes for the online simulator tool.
|
Modifier and Type | Method and Description |
---|---|
SimEvent.DestinationModule |
SimEvent.getEventDestinationModule()
Returns the destination module of the event.
|
static SimEvent.DestinationModule |
SimEvent.DestinationModule.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimEvent.DestinationModule[] |
SimEvent.DestinationModule.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
SimEvent(double eventTime,
List<SimAction> actions,
Object object,
SimEvent.DestinationModule destinationModule)
Constructor that allows to generate an event with a custom object and a list of action notifications.
|
SimEvent(double eventTime,
List<SimAction> actions,
SimEvent.DestinationModule destinationModule)
Constructor that allows to generate an event with a list of action notifications.
|
SimEvent(double eventTime,
Object object,
SimEvent.DestinationModule destinationModule)
Constructor that allows to generate an event with a custom object.
|
SimEvent(double eventTime,
SimAction action,
SimEvent.DestinationModule destinationModule)
Constructor that allows to generate an event with an action notification.
|