Package org.hl7.fhir.dstu2.model
Enum Specimen.SpecimenStatus
- java.lang.Object
-
- java.lang.Enum<Specimen.SpecimenStatus>
-
- org.hl7.fhir.dstu2.model.Specimen.SpecimenStatus
-
- All Implemented Interfaces:
Serializable,Comparable<Specimen.SpecimenStatus>
- Enclosing class:
- Specimen
public static enum Specimen.SpecimenStatus extends Enum<Specimen.SpecimenStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLEThe physical specimen is present and in good condition.ENTEREDINERRORThe specimen was entered in error and therefore nullified.NULLadded to help the parsersUNAVAILABLEThere is no physical specimen because it is either lost, destroyed or consumed.UNSATISFACTORYThe specimen cannot be used because of a quality issue such as a broken container, contamination, or too old.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Specimen.SpecimenStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Specimen.SpecimenStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Specimen.SpecimenStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVAILABLE
public static final Specimen.SpecimenStatus AVAILABLE
The physical specimen is present and in good condition.
-
UNAVAILABLE
public static final Specimen.SpecimenStatus UNAVAILABLE
There is no physical specimen because it is either lost, destroyed or consumed.
-
UNSATISFACTORY
public static final Specimen.SpecimenStatus UNSATISFACTORY
The specimen cannot be used because of a quality issue such as a broken container, contamination, or too old.
-
ENTEREDINERROR
public static final Specimen.SpecimenStatus ENTEREDINERROR
The specimen was entered in error and therefore nullified.
-
NULL
public static final Specimen.SpecimenStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static Specimen.SpecimenStatus[] 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 (Specimen.SpecimenStatus c : Specimen.SpecimenStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Specimen.SpecimenStatus 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 Specimen.SpecimenStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-