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.DeadReckoningAlgorithmField
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 DeadReckoningAlgorithmField.DRM8;
the class name, a period, and the class variable name.
Field Summary | |
static short | DRM2
(3) |
static short | DRM3
(4) |
static short | DRM4
(5) |
static short | DRM5
(6) |
static short | DRM6
(7) |
static short | DRM7
(8) |
static short | DRM8
(9) |
static short | DRM
(2) |
static short | OTHER
(0) |
static short | STATIC
(1) |
Method Summary | |
java.lang.String | toString(int idNumber)
|
Methods inherited from class java.lang.Object | |
Field Detail |
public static final short OTHER
public static final short STATIC
public static final short DRM
public static final short DRM2
public static final short DRM3
public static final short DRM4
public static final short DRM5
public static final short DRM6
public static final short DRM7
public static final short DRM8
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 |