Package edu.nps.moves.dis7.enumerations
Enum Class FormatType
- All Implemented Interfaces:
Serializable
,Comparable<FormatType>
,Constable
This
enum
type is generated from XML,
UID 363,
marshal size 5;
FormatType has 14 enumerations total.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAirborne Format, 0.25 nmi RNP, 100-foot Barometric AltitudeAirborne Format, 0.25 nmi RNP, 25-foot Barometric AltitudeAirborne Format, 1.0 nmi RNP, 100-foot Barometric AltitudeAirborne Format, 1.0 nmi RNP, 25-foot Barometric AltitudeAirborne Format, 100 meter RNP, 100-foot Barometric AltitudeAirborne Format, 100 meter RNP, 25-foot Barometric AltitudeAirborne Format, 100 meter RNP, GPS HeightAirborne Format, 5 meter RNP, 100-foot Barometric AltitudeAirborne Format, 5 meter RNP, 25-foot Barometric AltitudeAirborne Format, 5 meter RNP, GPS HeightIdentity FormatNo DataSurface Format, 100 meter RNPSurface Format, 5 meter RNP -
Method Summary
Modifier and TypeMethodDescriptionProvide enumeration descriptionstatic int
bit width for this enumerationstatic FormatType
getEnumForValue
(int value) Provide enumeration for a given valueint
Returns size of this serialized (marshalled) object in bytesgetName()
Provide nameboolean
getTRACE()
Whether tracing is on or off for this objectint
getValue()
Provide enumeration valuevoid
marshal
(DataOutputStream dos) Marshal value to DataOutputStreamvoid
marshal
(ByteBuffer byteBuffer) Marshal value to ByteBuffervoid
setTRACE
(boolean value) Set tracing on/off for this objecttoString()
Provide simple identifierstatic FormatType
Unmarshal value to DataInputStreamstatic FormatType
unmarshalEnum
(ByteBuffer byteBuffer) Unmarshal enumeration value to ByteBufferstatic FormatType
Returns the enum constant of this class with the specified name.static FormatType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_DATA
No Data -
IDENTITY_FORMAT
Identity Format -
SURFACE_FORMAT_5_METER_RNP
Surface Format, 5 meter RNP -
SURFACE_FORMAT_100_METER_RNP
Surface Format, 100 meter RNP -
AIRBORNE_FORMAT_5_METER_RNP_25_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 5 meter RNP, 25-foot Barometric Altitude -
AIRBORNE_FORMAT_100_METER_RNP_25_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 100 meter RNP, 25-foot Barometric Altitude -
AIRBORNE_FORMAT_025_NMI_RNP_25_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 0.25 nmi RNP, 25-foot Barometric Altitude -
AIRBORNE_FORMAT_10_NMI_RNP_25_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 1.0 nmi RNP, 25-foot Barometric Altitude -
AIRBORNE_FORMAT_5_METER_RNP_100_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 5 meter RNP, 100-foot Barometric Altitude -
AIRBORNE_FORMAT_100_METER_RNP_100_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 100 meter RNP, 100-foot Barometric Altitude -
AIRBORNE_FORMAT_025_NMI_RNP_100_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 0.25 nmi RNP, 100-foot Barometric Altitude -
AIRBORNE_FORMAT_10_NMI_RNP_100_FOOT_BAROMETRIC_ALTITUDE
Airborne Format, 1.0 nmi RNP, 100-foot Barometric Altitude -
AIRBORNE_FORMAT_5_METER_RNP_GPS_HEIGHT
Airborne Format, 5 meter RNP, GPS Height -
AIRBORNE_FORMAT_100_METER_RNP_GPS_HEIGHT
Airborne Format, 100 meter RNP, GPS Height
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()Provide enumeration value- Returns:
- integer value
-
getDescription
-
getEnumBitWidth
public static int getEnumBitWidth()bit width for this enumeration- Returns:
- number of bits wide
-
getEnumForValue
Provide enumeration for a given value- Parameters:
value
- integer value of interest- Returns:
- enumeration corresponding to numeric value
-
setTRACE
public void setTRACE(boolean value) Set tracing on/off for this object- Parameters:
value
- whether tracing is on or off
-
getTRACE
public boolean getTRACE()Whether tracing is on or off for this object- Returns:
- whether tracing is on or off
-
marshal
Marshal value to DataOutputStream- Parameters:
dos
- DataOutputStream for output- Throws:
IOException
- input-output error- See Also:
-
marshal
Marshal value to ByteBuffer- Parameters:
byteBuffer
- ByteBuffer for output- Throws:
IOException
- input-output errorException
- See Also:
-
unmarshalEnum
Unmarshal value to DataInputStream- Parameters:
dis
- DataInputStream for input- Returns:
- enumeration of interest
- Throws:
Exception
- unmarshalling input-output error- See Also:
-
unmarshalEnum
Unmarshal enumeration value to ByteBuffer- Parameters:
byteBuffer
- ByteBuffer for input- Returns:
- enumeration of interest
- Throws:
Exception
- unmarshalling input-output error- See Also:
-
getMarshalledSize
public int getMarshalledSize()Returns size of this serialized (marshalled) object in bytes- Returns:
- serialized size in bytes
- See Also:
-
getName
-
toString
Provide simple identifier- Overrides:
toString
in classEnum<FormatType>
- Returns:
- class name, value and name
-