Enum CatalogItemRelationType
- java.lang.Object
-
- java.lang.Enum<CatalogItemRelationType>
-
- org.hl7.fhir.dstu3.model.codesystems.CatalogItemRelationType
-
- All Implemented Interfaces:
Serializable,Comparable<CatalogItemRelationType>
public enum CatalogItemRelationType extends Enum<CatalogItemRelationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMBINESWITHThe entry combines with the related entryCONTAINSSBSTThe entry contains the related entry as a substanceNULLadded to help the parsersPKGCONTAINSThe entry is a package that contains the related entryPKGISCONTAINEDINThe entry is contained in the related entryREQUIRESThe entry requires the related entry for use
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CatalogItemRelationTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CatalogItemRelationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CatalogItemRelationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PKGCONTAINS
public static final CatalogItemRelationType PKGCONTAINS
The entry is a package that contains the related entry
-
PKGISCONTAINEDIN
public static final CatalogItemRelationType PKGISCONTAINEDIN
The entry is contained in the related entry
-
CONTAINSSBST
public static final CatalogItemRelationType CONTAINSSBST
The entry contains the related entry as a substance
-
COMBINESWITH
public static final CatalogItemRelationType COMBINESWITH
The entry combines with the related entry
-
REQUIRES
public static final CatalogItemRelationType REQUIRES
The entry requires the related entry for use
-
NULL
public static final CatalogItemRelationType NULL
added to help the parsers
-
-
Method Detail
-
values
public static CatalogItemRelationType[] 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 (CatalogItemRelationType c : CatalogItemRelationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CatalogItemRelationType 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 CatalogItemRelationType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-