Enum StructureMapTransform.ValueSet
- java.lang.Object
-
- java.lang.Enum<StructureMapTransform.ValueSet>
-
- com.ibm.fhir.model.type.code.StructureMapTransform.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<StructureMapTransform.ValueSet>
- Enclosing class:
- StructureMapTransform
public static enum StructureMapTransform.ValueSet extends Enum<StructureMapTransform.ValueSet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StructureMapTransform.ValueSetfrom(String value)Factory method for creating StructureMapTransform.ValueSet values from a passed string value.Stringvalue()static StructureMapTransform.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static StructureMapTransform.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final StructureMapTransform.ValueSet CREATE
createcreate(type : string) - type is passed through to the application on the standard API, and must be known by it.
-
COPY
public static final StructureMapTransform.ValueSet COPY
copycopy(source).
-
TRUNCATE
public static final StructureMapTransform.ValueSet TRUNCATE
truncatetruncate(source, length) - source must be stringy type.
-
ESCAPE
public static final StructureMapTransform.ValueSet ESCAPE
escapeescape(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 StructureMapTransform.ValueSet CAST
castcast(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 StructureMapTransform.ValueSet APPEND
appendappend(source...) - source is element or string.
-
TRANSLATE
public static final StructureMapTransform.ValueSet TRANSLATE
translatetranslate(source, uri_of_map) - use the translate operation.
-
REFERENCE
public static final StructureMapTransform.ValueSet REFERENCE
referencereference(source : object) - return a string that references the provided tree properly.
-
DATE_OP
public static final StructureMapTransform.ValueSet DATE_OP
dateOpPerform a date operation. *Parameters to be documented*.
-
UUID
public static final StructureMapTransform.ValueSet UUID
uuidGenerate a random UUID (in lowercase). No Parameters.
-
POINTER
public static final StructureMapTransform.ValueSet POINTER
pointerReturn the appropriate string to put in a reference that refers to the resource provided as a parameter.
-
EVALUATE
public static final StructureMapTransform.ValueSet EVALUATE
evaluateExecute the supplied FHIRPath expression and use the value returned by that.
-
CC
public static final StructureMapTransform.ValueSet CC
ccCreate a CodeableConcept. Parameters = (text) or (system. Code[, display]).
-
C
public static final StructureMapTransform.ValueSet C
cCreate a Coding. Parameters = (system. Code[, display]).
-
QTY
public static final StructureMapTransform.ValueSet QTY
qtyCreate a quantity. Parameters = (text) or (value, unit, [system, code]) where text is the natural representation e. g. [comparator]value[space]unit.
-
ID
public static final StructureMapTransform.ValueSet ID
idCreate an identifier. Parameters = (system, value[, type]) where type is a code from the identifier type value set.
-
CP
public static final StructureMapTransform.ValueSet CP
cpCreate a contact details. Parameters = (value) or (system, value). If no system is provided, the system should be inferred from the content of the value.
-
-
Method Detail
-
values
public static StructureMapTransform.ValueSet[] 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 (StructureMapTransform.ValueSet c : StructureMapTransform.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StructureMapTransform.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static StructureMapTransform.ValueSet from(String value)
Factory method for creating StructureMapTransform.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-