Enum Class LifeFormLandCategories
- All Implemented Interfaces:
Category
,Serializable
,Comparable<LifeFormLandCategories>
,Constable
This
enum
type is generated from XML,
UID 472,
marshal size 8;
LifeFormLandCategories has 27 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 ConstantDescriptionAir ForceSubcategoriesforLandCategory202AmphibianSubcategoriesforLandCategory204ArachnidArmyCivilian, Values from 130-159 are restricted to Civilians and may be further clarified by country code-specific values.Coast GuardConventional Armed Forces, Values from 10-29 are restricted to Conventional Armed Forces and may be further clarified by country code-specific values.Emergency Medical Technician (EMT)FirefighterHumanitarian Organizations, Values from 120-129 are restricted to non-governmental Humanitarian Organizations and may be further clarified by country code-specific values.SubcategoriesforLandCategory203InsectInsurgentIrregular Forces, Values from 100-109 are restricted to Irregular Forces and may be further clarified by country code-specific values.Law Enforcement, Values from 50-69 are restricted to Law Enforcement and may be further clarified by country code-specific values.SubcategoriesforLandCategory200MammalSubcategoriesforLandCategory206MarsupialSubcategoriesforLandCategory205MolluskNaval Infantry (Marines)NavyNon-Military National Government Agencies, Values from 70-89 are restricted to Non-Military National Government Agencies and may be further clarified by country code-specific values.Paramilitary Forces, Values from 110-119 are restricted to Paramilitary Forces and may be further clarified by country code-specific values.PressRegional / Local Forces, Values from 90-99 are restricted to Regional / Local Forces (e.g., state guard) and may be further clarified by country code-specific values.SubcategoriesforLandCategory201ReptileSpecial Operations Forces (SOF), Values from 30-49 are restricted to Special Operations Forces and may be further clarified by country code-specific values.Terrorist CombatantUnited Nations -
Method Summary
Modifier and TypeMethodDescriptionProvide enumeration descriptionstatic int
bit width for this enumerationstatic LifeFormLandCategories
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 LifeFormLandCategories
Unmarshal value to DataInputStreamstatic LifeFormLandCategories
unmarshalEnum
(ByteBuffer byteBuffer) Unmarshal enumeration value to ByteBufferstatic LifeFormLandCategories
Returns the enum constant of this class with the specified name.static LifeFormLandCategories[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONVENTIONAL_ARMED_FORCES
Conventional Armed Forces, Values from 10-29 are restricted to Conventional Armed Forces and may be further clarified by country code-specific values. -
ARMY
Army -
NAVAL_INFANTRY_MARINES
Naval Infantry (Marines) -
AIR_FORCE
Air Force -
NAVY
Navy -
COAST_GUARD
Coast Guard -
UNITED_NATIONS
United Nations -
SUPPLEMENTAL_EMISSION_ENTITY_STATE
Special Operations Forces (SOF), Values from 30-49 are restricted to Special Operations Forces and may be further clarified by country code-specific values. -
LIVE_ENTITY_DETONATION
Law Enforcement, Values from 50-69 are restricted to Law Enforcement and may be further clarified by country code-specific values. -
NON_MILITARY_NATIONAL_GOVERNMENT_AGENCIES
Non-Military National Government Agencies, Values from 70-89 are restricted to Non-Military National Government Agencies and may be further clarified by country code-specific values. -
REGIONAL_LOCAL_FORCES
Regional / Local Forces, Values from 90-99 are restricted to Regional / Local Forces (e.g., state guard) and may be further clarified by country code-specific values. -
IRREGULAR_FORCES
Irregular Forces, Values from 100-109 are restricted to Irregular Forces and may be further clarified by country code-specific values. -
TERRORIST_COMBATANT
Terrorist Combatant -
INSURGENT
Insurgent -
PARAMILITARY_FORCES
Paramilitary Forces, Values from 110-119 are restricted to Paramilitary Forces and may be further clarified by country code-specific values. -
HUMANITARIAN_ORGANIZATIONS
Humanitarian Organizations, Values from 120-129 are restricted to non-governmental Humanitarian Organizations and may be further clarified by country code-specific values. -
CIVILIAN
Civilian, Values from 130-159 are restricted to Civilians and may be further clarified by country code-specific values. -
EMERGENCY_MEDICAL_TECHNICIAN_EMT
Emergency Medical Technician (EMT) -
FIREFIGHTER
Firefighter -
PRESS
Press -
MAMMAL_2
SubcategoriesforLandCategory200Mammal -
REPTILE_2
SubcategoriesforLandCategory201Reptile -
AMPHIBIAN_2
SubcategoriesforLandCategory202Amphibian -
INSECT_2
SubcategoriesforLandCategory203Insect -
ARACHNID_2
SubcategoriesforLandCategory204Arachnid -
MOLLUSK_2
SubcategoriesforLandCategory205Mollusk -
MARSUPIAL_2
SubcategoriesforLandCategory206Marsupial
-
-
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
-
getDescription
Provide enumeration description- Specified by:
getDescription
in interfaceCategory
- Returns:
- description
-
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<LifeFormLandCategories>
- Returns:
- class name, value and name
-