Package org.projecthusky.valueset.enums
Enum Class DesignationType
- All Implemented Interfaces:
Serializable
,Comparable<DesignationType>
,Constable
The Class DesignationType. Designations are language
dependent display names for the code. For any language there might be
multiple, each specifying the type (fully specified name, preferred, synonym,
...). See also:
https://art-decor.org/mediawiki/index.php?title=DECOR-terminology
Die Klasse DesignationType enthält Bezeichnungen in Form von
sprachabhängigen Anzeigenamen für den Code. Für jede Sprache kann es mehrere
geben, die jeweils den Typ angeben (vollständiger Name, bevorzugter Name,
Synonym, ...). Siehe auch:
https://art-decor.org/mediawiki/index.php?title=DECOR-terminology
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionabbreviation designation as specified by Art-DECOR.The fully specified name designation as specified by Art-DECOR.Preferred designation as specified by Art-DECOR.Synonym designation as specified by Art-DECOR. -
Method Summary
Modifier and TypeMethodDescriptionstatic DesignationType
Gets the Enum with a given code Liefert den Enum anhand eines gegebenen codesstatic DesignationType
Returns the enum constant of this class with the specified name.static DesignationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PREFERRED
Preferred designation as specified by Art-DECOR. -
SYNONYM
Synonym designation as specified by Art-DECOR. -
ABBREVIATION
abbreviation designation as specified by Art-DECOR. -
FULLY_SPECIFIED_NAME
The fully specified name designation as specified by Art-DECOR.
-
-
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
-
getEnum
Gets the Enum with a given codeLiefert den Enum anhand eines gegebenen codes- Parameters:
code
-
code- Returns:
- the enum
-