public static enum HlaManager.ETimeManagementService extends java.lang.Enum<HlaManager.ETimeManagementService>
| Enum Constant and Description |
|---|
NextEventRequest
The Federate uses the Next Event Request (NER) calls to advance time.
|
TimeAdvancementRequest
The Federate uses the Time Advance Request (TAR) calls to advance in time.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Override the toString of enum class.
|
static HlaManager.ETimeManagementService |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HlaManager.ETimeManagementService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HlaManager.ETimeManagementService NextEventRequest
public static final HlaManager.ETimeManagementService TimeAdvancementRequest
public static HlaManager.ETimeManagementService[] values()
for (HlaManager.ETimeManagementService c : HlaManager.ETimeManagementService.values()) System.out.println(c);
public static HlaManager.ETimeManagementService 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<HlaManager.ETimeManagementService>