Package org.hl7.fhir.dstu2016may.model
Enum StructureMap.StructureMapTransform
- java.lang.Object
-
- java.lang.Enum<StructureMap.StructureMapTransform>
-
- org.hl7.fhir.dstu2016may.model.StructureMap.StructureMapTransform
-
- All Implemented Interfaces:
Serializable,Comparable<StructureMap.StructureMapTransform>
- Enclosing class:
- StructureMap
public static enum StructureMap.StructureMapTransform extends Enum<StructureMap.StructureMapTransform>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPENDappend(source...) - source is element or stringCASTcast(source, type?) - case source from one type to another.COPYcopy(source)CREATEcreate(type : string) - type is passed through to the application on the standard API, and must be known by itDATEOPsomethingESCAPEescape(source, fmt1, fmt2) - change source from one kind of escaping to another (plain, java, xml, json).EVALUATEsomethingNULLadded to help the parsersPOINTERsomethingREFERENCEreference(source : object) - return a string that references the provided tree properlyTRANSLATEtranslate(source, uri_of_map) - use the translate operationTRUNCATEtruncate(source, length) - source must be stringy typeUUIDsomething
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StructureMap.StructureMapTransformfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static StructureMap.StructureMapTransformvalueOf(String name)Returns the enum constant of this type with the specified name.static StructureMap.StructureMapTransform[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final StructureMap.StructureMapTransform CREATE
create(type : string) - type is passed through to the application on the standard API, and must be known by it
-
COPY
public static final StructureMap.StructureMapTransform COPY
copy(source)
-
TRUNCATE
public static final StructureMap.StructureMapTransform TRUNCATE
truncate(source, length) - source must be stringy type
-
ESCAPE
public static final StructureMap.StructureMapTransform ESCAPE
escape(source, fmt1, fmt2) - change source from one kind of escaping to another (plain, java, xml, json). note that this is for when the string itself is escaped
-
CAST
public static final StructureMap.StructureMapTransform CAST
cast(source, type?) - case source from one type to another. target type can be left as implicit if there is one and only one target type known
-
APPEND
public static final StructureMap.StructureMapTransform APPEND
append(source...) - source is element or string
-
TRANSLATE
public static final StructureMap.StructureMapTransform TRANSLATE
translate(source, uri_of_map) - use the translate operation
-
REFERENCE
public static final StructureMap.StructureMapTransform REFERENCE
reference(source : object) - return a string that references the provided tree properly
-
DATEOP
public static final StructureMap.StructureMapTransform DATEOP
something
-
UUID
public static final StructureMap.StructureMapTransform UUID
something
-
POINTER
public static final StructureMap.StructureMapTransform POINTER
something
-
EVALUATE
public static final StructureMap.StructureMapTransform EVALUATE
something
-
NULL
public static final StructureMap.StructureMapTransform NULL
added to help the parsers
-
-
Method Detail
-
values
public static StructureMap.StructureMapTransform[] 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.StructureMapTransform c : StructureMap.StructureMapTransform.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.StructureMapTransform 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.StructureMapTransform fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-