Enum Class ELcdMS2525Standard
- All Implemented Interfaces:
Serializable
,Comparable<ELcdMS2525Standard>
,Constable
Defines the supported MIL-STD 2525 symbology standards.
Note that all classes / methods with an explicit reference to MIL-STD 2525 in their name also work for MIL-STD 2525c and MIL-STD 2525d. It is the responsibility of the domain object (e.g., TLcdEditableMS2525bObject) to link a symbol to one of the symbology standards listed in this class.
- Since:
- 2012.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe MIL-STD 2525b symbology standard.The MIL-STD 2525c symbology standard.The MIL-STD 2525d symbology standard. -
Method Summary
Modifier and TypeMethodDescriptionReturns the display name of the standard.static ELcdMS2525Standard
Returns the enum constant of this class with the specified name.static ELcdMS2525Standard[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MIL_STD_2525b
The MIL-STD 2525b symbology standard. Reference to the implemented standard: MIL-STD 2525b w/Change 2 Common Warfighting Symbology, DOD, March 2007. -
MIL_STD_2525c
The MIL-STD 2525c symbology standard. Reference to the implemented standard: MIL-STD 2525c Common Warfighting Symbology, DOD, November 2008. -
MIL_STD_2525d
The MIL-STD 2525d symbology standard. Reference to the implemented standard: MIL-STD 2525d Joint Military Symbology, DOD, June 2014.
-
-
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
-
getDisplayName
Returns the display name of the standard.- Returns:
- a user-friendly representation of the standard name
- Since:
- 2018.0
-