Overview | Package | Class | Tree | Deprecated | Index | Help | |||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--mil.navy.nps.disEnumerations.EventTypeField
This is effectively a C-style enumeration. Java doesn't do enumerations like C, so you have to wrap a class around it. It's a bit more typing, but pretty simple-minded. Note that the variables are declared public. The default for access is package-wide, but these variables might need to be accessed from outside the package. Since all the variables are final, nobody can change anything anyway, so this is no biggie.
To use these enumerations in your Java code, import the package first:
import mil.navy.nps.disEnumerations.*;
You access this via something like EventTypeField.REQUESTFORINDIRECTFIREORCASMISSION;
the class name, a period, and the class variable name.
Field Summary | |
static long | AGGREGATESTATECHANGEREQUESTED
(15) |
static long | DAMAGE
(4) |
static long | ENTITYINITIALIZATION
(8) |
static long | FIREDISABLED
(6) |
static long | INDIRECTFIREORCASFIRE
(10) |
static long | KILLEDINACTION
(3) |
static long | MINEFIELDDETONATION
(12) |
static long | MINEFIELDENTRY
(11) |
static long | MOBILITYDISABLED
(5) |
static long | OTHER
(0) |
static long | RANOUTOFAMMUNITION
(2) |
static long | RANOUTOFFUEL
(7) |
static long | REQUESTFORINDIRECTFIREORCASMISSION
(9) |
static long | UNUSED
(1) unused |
static long | VEHICLEMASTERPOWEROFF
(14) |
static long | VEHICLEMASTERPOWERON
(13) |
Method Summary | |
java.lang.String | toString(int idNumber)
|
Methods inherited from class java.lang.Object | |
Field Detail |
public static final long OTHER
public static final long UNUSED
public static final long INDIRECTFIREORCASFIRE
public static final long MINEFIELDENTRY
public static final long MINEFIELDDETONATION
public static final long VEHICLEMASTERPOWERON
public static final long VEHICLEMASTERPOWEROFF
public static final long AGGREGATESTATECHANGEREQUESTED
public static final long RANOUTOFAMMUNITION
public static final long KILLEDINACTION
public static final long DAMAGE
public static final long MOBILITYDISABLED
public static final long FIREDISABLED
public static final long RANOUTOFFUEL
public static final long ENTITYINITIALIZATION
public static final long REQUESTFORINDIRECTFIREORCASMISSION
Method Detail |
public java.lang.String toString(int idNumber)
Overview | Package | Class | Tree | Deprecated | Index | Help | |||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |