
Package org.hl7.fhir.dstu3.model
Enum StructureMap.StructureMapSourceListMode
- java.lang.Object
-
- java.lang.Enum<StructureMap.StructureMapSourceListMode>
-
- org.hl7.fhir.dstu3.model.StructureMap.StructureMapSourceListMode
-
- All Implemented Interfaces:
Serializable
,Comparable<StructureMap.StructureMapSourceListMode>
- Enclosing class:
- StructureMap
public static enum StructureMap.StructureMapSourceListMode extends Enum<StructureMap.StructureMapSourceListMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIRST
Only process this rule for the first in the listLAST
Only process this rule for the last in the listNOTFIRST
Process this rule for all but the firstNOTLAST
Process this rule for all but the lastNULL
added to help the parsers with the generic typesONLYONE
Only process this rule is there is only item
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StructureMap.StructureMapSourceListMode
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static StructureMap.StructureMapSourceListMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static StructureMap.StructureMapSourceListMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST
public static final StructureMap.StructureMapSourceListMode FIRST
Only process this rule for the first in the list
-
NOTFIRST
public static final StructureMap.StructureMapSourceListMode NOTFIRST
Process this rule for all but the first
-
LAST
public static final StructureMap.StructureMapSourceListMode LAST
Only process this rule for the last in the list
-
NOTLAST
public static final StructureMap.StructureMapSourceListMode NOTLAST
Process this rule for all but the last
-
ONLYONE
public static final StructureMap.StructureMapSourceListMode ONLYONE
Only process this rule is there is only item
-
NULL
public static final StructureMap.StructureMapSourceListMode NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static StructureMap.StructureMapSourceListMode[] 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 (StructureMap.StructureMapSourceListMode c : StructureMap.StructureMapSourceListMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StructureMap.StructureMapSourceListMode 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 StructureMap.StructureMapSourceListMode fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-