Package org.projecthusky.valueset.enums
Enum Class ValueSetStatus
- All Implemented Interfaces:
Serializable
,Comparable<ValueSetStatus>
,Constable
The content of the enum is as given by ART-DECOR. In case of
a possible implementation of the interface to the terminology server, a
mapping to the available statuses in the terminology server need to be made.
ART-DECOR documentation for statusCode (see
https://art-decor.org/mediawiki/index.php?title=DECOR-terminology): The
mandatory status of a defining value set. According to the Business
Requirements for Value Set Registries ART-DECOR uses the following subset of
status codes of a value set.
Der Inhalt des Enums ist wie von ART-DECOR vorgegeben. Bei
einer allfälligen Implementierung der Schnittstelle zum Terminologieserver
muss hier evtl. ein Mapping zu den verfügbaren Stati im Terminologieserver
gemacht werden. ART-DECOR-Dokumentation für statusCode (siehe
https://art-decor.org/mediawiki/index.php?title=DECOR-terminology): Der
obligatorische Status ValueSets. ART-DECOR verwendet die folgende Teilmenge
von Statuscodes eines Wertesatzes.
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionValue set is withdrawn.Value set retired: No longer fit for use.Value set under development (nascent).Value set has been published by the custodian organization and deemed fit for use.Value set just created and is new and work in progress to become a draft/finalized value set.Value set is rejected. -
Method Summary
Modifier and TypeMethodDescriptionstatic ValueSetStatus
Returns the enum constant of this class with the specified name.static ValueSetStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CANCELLED
Value set is withdrawn. Don't use it.Die Entwicklung am ValueSet wurde abgebrochen. Nicht verwenden. -
DEPRECATED
Value set retired: No longer fit for use. Information available for historical reference.Veraltetes ValueSet: Nicht mehr einsatzbereit. Informationen nur als historische Referenz verfügbar. -
DRAFT
Value set under development (nascent). Metadata and value set may be incomplete. Entered primarily to encourage other users to be aware of ongoing process.In Entwicklung befindliches ValueSet (Entwurf). Metadaten und Inhalt sind möglicherweise unvollständig. Wird in erster Linie verwendet, um andere Benutzer zu ermutigen, sich des laufenden Prozesses bewusst zu werden. -
FINAL
Value set has been published by the custodian organization and deemed fit for use. May have associated adoption and annotation metadata.Das ValueSet wurde vom Herausgeber veröffentlicht und als gebrauchstauglich eingestuft. -
NEW
Value set just created and is new and work in progress to become a draft/finalized value set. Beyond the author, nobody should look at this value set unless it's status code is draft or finalized.ValueSet, das gerade erstellt wurde und neu und in Arbeit ist. Ausser dem Autor des ValueSets sollte sich niemand mit diesem ValueSet befassen. -
REJECTED
Value set is rejected. Don't use it.Das ValueSet wurde verworfen. Nicht verwenden.
-
-
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
-