Contents | Package | Class | Tree | Deprecated | Index | Help | |||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----mil.navy.nps.disEnumerations.ForceIDField
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 ForceIDField.NEUTRAL;
the class name, a period, and the class variable name.
Field Summary | |
static short | FRIENDLY
|
static short | NEUTRAL
|
static short | OPPOSING
|
static short | OTHER
|
Constructor Summary | |
ForceIDField()
|
Method Summary | |
java.lang.String | toString(int idNumber)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final short OTHER
public static final short FRIENDLY
public static final short OPPOSING
public static final short NEUTRAL
Constructor Detail |
public ForceIDField()
Method Detail |
public java.lang.String toString(int idNumber)
Contents | Package | Class | Tree | Deprecated | Index | Help | |||
PREV | NEXT | SHOW LISTS | HIDE LISTS |