Package org.projecthusky.valueset.enums
Enum Class ValueSetPackageStatus
- All Implemented Interfaces:
Serializable
,Comparable<ValueSetPackageStatus>
,Constable
Availability status of a value set package. Availability is
based on HL7 FIHR.
Verfügbarkeitsstatus eines Value Set Pakets. Die
Verfügbarkeit orientiert sich an HL7 FIHR.
. See
https://www.hl7.org/fhir/Value Set-publication-status.html.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionActive Value Set Package.Available Value Set package, which can be used for testing and further development.Outdated Value Set package which should not be used anymore. Veraltetes Value Set Paket welches nicht mehr verwendet werden sollte.The status is unknown. Der Status ist nicht bekannt. -
Method Summary
Modifier and TypeMethodDescriptionstatic ValueSetPackageStatus
Returns the enum constant of this class with the specified name.static ValueSetPackageStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
Active Value Set Package. Is always valid.Aktives Value Set Paket. Ist immer gültig. -
DRAFT
Available Value Set package, which can be used for testing and further development. May be valid or not.Verfügbares Value Set Paket, welches für Tests und Weiterentwicklung verwendet werden kann. Kann Gültig sein oder nicht. -
RETIRED
Outdated Value Set package which should not be used anymore.Veraltetes Value Set Paket welches nicht mehr verwendet werden sollte. -
UNKNOWN
The status is unknown.Der Status ist nicht bekannt.
-
-
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
-