Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS

Class mil.navy.nps.disEnumerations.AcknowledgeFlagField

java.lang.Object
    |
    +----mil.navy.nps.disEnumerations.AcknowledgeFlagField

public class AcknowledgeFlagField
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/AcknowledgeFlagField.java
Summary:
Acknowledge Flag Field -- This field shall indicate what type of message has been acknowledged. This field shall be represented byt a 16-bit enumeration (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 AcknowledgeFlagField.STOPFREEZE; 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: Acknowledge Flag 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

Field Summary
static int  CREATEENTITY
(1) Create Entity
static int  REMOVEENTITY
(2) Remove entity
static int  STARTRESUME
(3) Start/Resume
static int  STOPFREEZE
(4) Stop/Freeze
 

Constructor Summary
 AcknowledgeFlagField()
 
 

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

CREATEENTITY

public static final int CREATEENTITY
(1) Create Entity

REMOVEENTITY

public static final int REMOVEENTITY
(2) Remove entity

STARTRESUME

public static final int STARTRESUME
(3) Start/Resume

STOPFREEZE

public static final int STOPFREEZE
(4) Stop/Freeze
Constructor Detail

AcknowledgeFlagField

public AcknowledgeFlagField()
Method Detail

toString

public java.lang.String toString(int idNumber)

Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS