Enum Tldc
- java.lang.Object
-
- java.lang.Enum<Tldc>
-
- org.hl7.fhir.r4.model.codesystems.Tldc
-
- All Implemented Interfaces:
Serializable,Comparable<Tldc>
public enum Tldc extends Enum<Tldc>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEDesign has been deemed fit for the intended purpose and is published by the governance group.CANCELLEDA drafted design is determined to be erroneous or not fit for intended purpose and is discontinued before ever being published in an active state.DRAFTDesign is under development (nascent).NULLadded to help the parsersPENDINGDesign is completed and is being reviewed.REJECTEDA previously drafted design is determined to be erroneous or not fit for intended purpose and is discontinued before ever being published for consideration in a pending state.RETIREDA previously active design is discontinued from use.REVIEWDesign is active, but is under review.TERMINATEDA design is determined to be erroneous or not fit for the intended purpose and should no longer be used, even for historical purposes.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TldcfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static TldcvalueOf(String name)Returns the enum constant of this type with the specified name.static Tldc[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final Tldc ACTIVE
Design has been deemed fit for the intended purpose and is published by the governance group.
-
REVIEW
public static final Tldc REVIEW
Design is active, but is under review. The review may result in a change to the design. The change may necessitate a new version to be created. This in turn may result in the prior version of the template to be retired. Alternatively, the review may result in a change to the design that does not require a new version to be created, or it may result in no change to the design at all.
-
CANCELLED
public static final Tldc CANCELLED
A drafted design is determined to be erroneous or not fit for intended purpose and is discontinued before ever being published in an active state.
-
REJECTED
public static final Tldc REJECTED
A previously drafted design is determined to be erroneous or not fit for intended purpose and is discontinued before ever being published for consideration in a pending state.
-
RETIRED
public static final Tldc RETIRED
A previously active design is discontinued from use. It should no longer be used for future designs, but for historical purposes may be used to process data previously recorded using this design. A newer design may or may not exist. The design is published in the retired state.
-
TERMINATED
public static final Tldc TERMINATED
A design is determined to be erroneous or not fit for the intended purpose and should no longer be used, even for historical purposes. No new designs can be developed for this template. The associated template no longer needs to be published, but if published, is shown in the terminated state.
-
-
Method Detail
-
values
public static Tldc[] 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 (Tldc c : Tldc.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tldc 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 Tldc fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-