Package org.hl7.fhir.r5.model
Enum InventoryReport.InventoryReportStatus
- java.lang.Object
-
- java.lang.Enum<InventoryReport.InventoryReportStatus>
-
- org.hl7.fhir.r5.model.InventoryReport.InventoryReportStatus
-
- All Implemented Interfaces:
Serializable,Comparable<InventoryReport.InventoryReportStatus>
- Enclosing class:
- InventoryReport
public static enum InventoryReport.InventoryReportStatus extends Enum<InventoryReport.InventoryReportStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEThis report is submitted as current.DRAFTThe existence of the report is registered, but it is still without content or only some preliminary content.ENTEREDINERRORThe report has been withdrawn following a previous final release.NULLadded to help the parsers with the generic typesREQUESTEDThe inventory report has been requested but there is no data available.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InventoryReport.InventoryReportStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static InventoryReport.InventoryReportStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static InventoryReport.InventoryReportStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT
public static final InventoryReport.InventoryReportStatus DRAFT
The existence of the report is registered, but it is still without content or only some preliminary content.
-
REQUESTED
public static final InventoryReport.InventoryReportStatus REQUESTED
The inventory report has been requested but there is no data available.
-
ACTIVE
public static final InventoryReport.InventoryReportStatus ACTIVE
This report is submitted as current.
-
ENTEREDINERROR
public static final InventoryReport.InventoryReportStatus ENTEREDINERROR
The report has been withdrawn following a previous final release. This electronic record should never have existed, though it is possible that real-world decisions were based on it.
-
NULL
public static final InventoryReport.InventoryReportStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static InventoryReport.InventoryReportStatus[] 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 (InventoryReport.InventoryReportStatus c : InventoryReport.InventoryReportStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InventoryReport.InventoryReportStatus 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 InventoryReport.InventoryReportStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-