Enum StandardsStatus
- java.lang.Object
-
- java.lang.Enum<StandardsStatus>
-
- org.hl7.fhir.r4.model.codesystems.StandardsStatus
-
- All Implemented Interfaces:
Serializable,Comparable<StandardsStatus>
public enum StandardsStatus extends Enum<StandardsStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEPRECATEDThis portion of the specification is provided for implementer assistance, and does not make rules that implementers are required to follow.DRAFTThis portion of the specification is not considered to be complete enough or sufficiently reviewed to be safe for implementation.EXTERNALThis is content that is managed outside the FHIR Specification, but included for implementer convenience.INFORMATIVEThis portion of the specification is provided for implementer assistance, and does not make rules that implementers are required to follow.NORMATIVEThis content has been subject to review and production implementation in a wide variety of environments.NULLadded to help the parsersTRIALUSEThis content has been well reviewed and is considered by the authors to be ready for use in production systems.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StandardsStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static StandardsStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static StandardsStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT
public static final StandardsStatus DRAFT
This portion of the specification is not considered to be complete enough or sufficiently reviewed to be safe for implementation. It may have known issues or still be in the "in development" stage. It is included in the publication as a place-holder, to solicit feedback from the implementation community and/or to give implementers some insight as to functionality likely to be included in future versions of the specification. Content at this level should only be implemented by the brave or desperate and is very much "use at your own risk". The content that is Draft that will usually be elevated to Trial Use once review and correction is complete after it has been subjected to ballot.
-
NORMATIVE
public static final StandardsStatus NORMATIVE
This content has been subject to review and production implementation in a wide variety of environments. The content is considered to be stable and has been 'locked', subjecting it to FHIR Inter-version Compatibility Rules. While changes are possible, they are expected to be infrequent and are tightly constrained. Compatibility Rules.
-
TRIALUSE
public static final StandardsStatus TRIALUSE
This content has been well reviewed and is considered by the authors to be ready for use in production systems. It has been subjected to ballot and approved as an official standard. However, it has not yet seen widespread use in production across the full spectrum of environments it is intended to be used in. In some cases, there may be documented known issues that require implementation experience to determine appropriate resolutions for. Future versions of FHIR may make significant changes to Trial Use content that are not compatible with previously published content.
-
INFORMATIVE
public static final StandardsStatus INFORMATIVE
This portion of the specification is provided for implementer assistance, and does not make rules that implementers are required to follow. Typical examples of this content in the FHIR specification are tables of contents, registries, examples, and implementer advice.
-
DEPRECATED
public static final StandardsStatus DEPRECATED
This portion of the specification is provided for implementer assistance, and does not make rules that implementers are required to follow. Typical examples of this content in the FHIR specification are tables of contents, registries, examples, and implementer advice.
-
EXTERNAL
public static final StandardsStatus EXTERNAL
This is content that is managed outside the FHIR Specification, but included for implementer convenience.
-
NULL
public static final StandardsStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static StandardsStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StandardsStatus c : StandardsStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StandardsStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
fromCode
public static StandardsStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-