public enum MCrelationshipType extends java.lang.Enum<MCrelationshipType>
Enum Constant and Description |
---|
CONTAINS
Source Item contains Target Content Item.
|
HAS_ACQ_CONTEXT
The Target Content Item describes the conditions present during data acquisition of the Source Content Item.
|
HAS_CONCEPT_MOD
Used to qualify or describe the Concept Name of the Source Content item, such as to create a post-coordinated
description of a concept, or to further describe a concept.
|
HAS_OBS_CONTEXT
Target Content Items shall convey any specialization of Observation Context needed for unambiguous
documentation of the Source Content Item.
|
HAS_PROPERTIES
Description of properties of the Source Content Item.
|
INFERRED_FROM
Source Content Item conveys a measurement or other inference made from the Target Content Items.
|
SELECTED_FROM
Source Content Item conveys spatial or temporal coordinates selected from the Target Content Item(s).
|
UNDEFINED
The relationship is not defined yet.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
definedTerm()
Returns DICOM defined term for this relationship type.
|
static MCrelationshipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MCrelationshipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MCrelationshipType CONTAINS
public static final MCrelationshipType HAS_OBS_CONTEXT
public static final MCrelationshipType HAS_ACQ_CONTEXT
public static final MCrelationshipType HAS_CONCEPT_MOD
public static final MCrelationshipType HAS_PROPERTIES
public static final MCrelationshipType INFERRED_FROM
public static final MCrelationshipType SELECTED_FROM
public static final MCrelationshipType UNDEFINED
public static MCrelationshipType[] values()
for (MCrelationshipType c : MCrelationshipType.values()) System.out.println(c);
public static MCrelationshipType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String definedTerm()