public class SimEventState
extends java.lang.Object
The possible states are:
Modifier and Type | Field and Description |
---|---|
static SimEventState |
INTERRUPTED
The event has been canceled and will never be processed.
|
private java.lang.String |
name
The name of this event state.
|
static SimEventState |
PROCESSED
The event has been processed by its scheduling SimEntity.
|
static SimEventState |
UNUSED
The event object is not currently in use.
|
static SimEventState |
WAITING
The event is on the event list waiting to be processed.
|
Modifier | Constructor and Description |
---|---|
protected |
SimEventState(java.lang.String name)
Construct a new SimEventState with the given name.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
public static final SimEventState WAITING
public static final SimEventState PROCESSED
public static final SimEventState INTERRUPTED
public static final SimEventState UNUSED
private final java.lang.String name