Overview | Package | Class | Tree | Deprecated | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Class mil.navy.nps.disEnumerations.EntityKindField

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

public class EntityKindField
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/EntityKindField.java
Summary:
Entity Kind Field -- This field shall identify the Kind of Entity
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 EntityKindField.SENSOREMITTER; 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: Entity Kind 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 short CULTURALFEATURE
          (5)
static short ENVIRONMENTAL
          (4)
static short EXPENDABLE
          (8)
static short LIFEFORM
          (3)
static short MUNITION
          (2)
static short OTHER
          (0)
static short PLATFORM
          (1)
static short RADIO
          (7)
static short SENSOREMITTER
          (9)
static short SUPPLY
          (6)
 
Method Summary
java.lang.String toString(int idNumber)
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notifyAll, notify, toString, wait, wait, wait
 

Field Detail

OTHER

public static final short OTHER
(0) Other

PLATFORM

public static final short PLATFORM
(1) Platform

MUNITION

public static final short MUNITION
(2) Munition

LIFEFORM

public static final short LIFEFORM
(3) Life form

ENVIRONMENTAL

public static final short ENVIRONMENTAL
(4) Environmental

CULTURALFEATURE

public static final short CULTURALFEATURE
(5) Cultural feature

SUPPLY

public static final short SUPPLY
(6) Supply

RADIO

public static final short RADIO
(7) Radio

EXPENDABLE

public static final short EXPENDABLE
(8) Expendable

SENSOREMITTER

public static final short SENSOREMITTER
(9) Sensor/Emitter
Method Detail

toString

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