Enum ConceptMapEquivalence.ValueSet
- java.lang.Object
-
- java.lang.Enum<ConceptMapEquivalence.ValueSet>
-
- com.ibm.fhir.model.type.code.ConceptMapEquivalence.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ConceptMapEquivalence.ValueSet>
- Enclosing class:
- ConceptMapEquivalence
public static enum ConceptMapEquivalence.ValueSet extends Enum<ConceptMapEquivalence.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISJOINTDisjointEQUALEqualEQUIVALENTEquivalentINEXACTInexactNARROWERNarrowerRELATEDTORelated ToSPECIALIZESSpecializesSUBSUMESSubsumesUNMATCHEDUnmatchedWIDERWider
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConceptMapEquivalence.ValueSetfrom(String value)Factory method for creating ConceptMapEquivalence.ValueSet values from a passed string value.Stringvalue()static ConceptMapEquivalence.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ConceptMapEquivalence.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELATEDTO
public static final ConceptMapEquivalence.ValueSet RELATEDTO
Related ToThe concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known.
-
EQUIVALENT
public static final ConceptMapEquivalence.ValueSet EQUIVALENT
EquivalentThe definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).
-
EQUAL
public static final ConceptMapEquivalence.ValueSet EQUAL
EqualThe definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identical or irrelevant (i.e. intentionally identical).
-
WIDER
public static final ConceptMapEquivalence.ValueSet WIDER
WiderThe target mapping is wider in meaning than the source concept.
-
SUBSUMES
public static final ConceptMapEquivalence.ValueSet SUBSUMES
SubsumesThe target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
-
NARROWER
public static final ConceptMapEquivalence.ValueSet NARROWER
NarrowerThe target mapping is narrower in meaning than the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally.
-
SPECIALIZES
public static final ConceptMapEquivalence.ValueSet SPECIALIZES
SpecializesThe target mapping specializes the meaning of the source concept (e.g. the target is-a source).
-
INEXACT
public static final ConceptMapEquivalence.ValueSet INEXACT
InexactThe target mapping overlaps with the source concept, but both source and target cover additional meaning, or the definitions are imprecise and it is uncertain whether they have the same boundaries to their meaning. The sense in which the mapping is inexact SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally.
-
UNMATCHED
public static final ConceptMapEquivalence.ValueSet UNMATCHED
UnmatchedThere is no match for this concept in the target code system.
-
DISJOINT
public static final ConceptMapEquivalence.ValueSet DISJOINT
DisjointThis is an explicit assertion that there is no mapping between the source and target concept.
-
-
Method Detail
-
values
public static ConceptMapEquivalence.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 (ConceptMapEquivalence.ValueSet c : ConceptMapEquivalence.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 ConceptMapEquivalence.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 ConceptMapEquivalence.ValueSet from(String value)
Factory method for creating ConceptMapEquivalence.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
-
-