public enum EnumRelationshipType extends java.lang.Enum<EnumRelationshipType>
| Enum Constant and Description |
|---|
CONTAINS
The CONTAINS.
|
HAS_ACQUISITION_CONTEXT
The HA s_ acquisitio n_ context.
|
HAS_CONCEPT_MODIFIER
The HA s_ concep t_ modifier.
|
HAS_OBSERVATION_CONTEXT
The HA s_ observatio n_ context.
|
HAS_PROPERTIES
The HA s_ properties.
|
INFERRED_FROM
The INFERRE d_ from.
|
SELECTED_FROM
The SELECTE d_ from.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumRelationshipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumRelationshipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRelationshipType CONTAINS
public static final EnumRelationshipType HAS_OBSERVATION_CONTEXT
public static final EnumRelationshipType HAS_CONCEPT_MODIFIER
public static final EnumRelationshipType HAS_PROPERTIES
public static final EnumRelationshipType HAS_ACQUISITION_CONTEXT
public static final EnumRelationshipType INFERRED_FROM
public static final EnumRelationshipType SELECTED_FROM
public static EnumRelationshipType[] values()
for (EnumRelationshipType c : EnumRelationshipType.values()) System.out.println(c);
public static EnumRelationshipType 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 getValue()