Class mil.navy.nps.disEnumerations.ReasonField
java.lang.Object
|
+----mil.navy.nps.disEnumerations.ReasonField
- public class ReasonField
- extends java.lang.Object
- Version:
- 1.0
- Author:
- Ronan Fauglas (http://www.stl.nps.navy.mil/~fauglas)
- Location:
-
http://www.stl.nps.navy.mil/dis-java-vrml/mil/navy/nps/disEnumerations/ReasonField.java
- Summary:
- Reason Field -- This field shall specify the reason that an entity or exercies was stopped/frozen. This field shall be represented by an 8-bit enumberation (see Section 7 in EBV-DOC)
- Explanation:
- This file has been automatically generated from the DIS Data Dictionary
html source file by
disconvertJdbeDisEnumerationsToJava.pl.
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 ReasonField.ABORTTRAININGRETURNTOTACTICALOPERATIONS;
the class name, a period, and the class variable name.
- History:
- 21jan98 /Ronan Fauglas /New-generated automatically by convertJdbeDisEnumerationsToJava.pl
- References:
- JDBE:DIS Data Dictionary Version 1.0a(DIS-DD)
- DIS Data Dictionary: Reason Field
- convertJdbeDisEnumerationsToJava.pl Perl script (converting html enumerations to java enumerations)
http://www.stl.nps.navy.mil/dis-java-vrml/mil/navy/nps/disEnumerations/convertJdbeDisEnumerationsToJava.pl
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 |
OTHER
public static final short OTHER
- (0) Other
RECESS
public static final short RECESS
- (1) Recess
TERMINATION
public static final short TERMINATION
- (2) Termination
SYSTEMFAILURE
public static final short SYSTEMFAILURE
- (3) System Failure
SECURITYVIOLATION
public static final short SECURITYVIOLATION
- (4) Security Violation
ENTITYRECONSTITUTION
public static final short ENTITYRECONSTITUTION
- (5) Entity Reconstitution
STOPFORRESET
public static final short STOPFORRESET
- (6) Stop for reset
STOPFORRESTART
public static final short STOPFORRESTART
- (7) Stop for restart
ABORTTRAININGRETURNTOTACTICALOPERATIONS
public static final short ABORTTRAININGRETURNTOTACTICALOPERATIONS
- (8) Abort Training Return to Tactical Operations
ReasonField
public ReasonField()
toString
public java.lang.String toString(int idNumber)