Enum Class GlossaryTermDefinition
java.lang.Object
java.lang.Enum<GlossaryTermDefinition>
org.odpi.openmetadata.samples.archiveutilities.clinicaltrialtemplates.GlossaryTermDefinition
- All Implemented Interfaces:
Serializable
,Comparable<GlossaryTermDefinition>
,Constable
The GlossaryTermDefinition is used to populate the teddy bear drop foot glossary. Because these glossary terms are
used in templates, two versions of each term are produced - the first is the pure term and the second is a
template substitute that is used in templates - to ensure that semantic assignments to the template elements are kept
apart from the genuine semantic assignments.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe number of degrees of rotation of the left foot measured from vertical.The number of degrees of rotation of the right foot measured from vertical.Blood pressure of patient (systolic and diastolic).Day, month and year that the patient was born.Height of patient.The date that the measurement was made.Unique identifier of patient.Weight of patient. -
Method Summary
Modifier and TypeMethodDescriptionReturn the short name (abbreviation) for the glossary term.Return the category for the main term - may be null.Return the description for this glossary term.getName()
Return the name of the main term.Qualified name of the main glossary term.Return the standard category for the template substitute.Return the summary for the main term.Return the name of the template substitute term.Return the qualified name for the template substitute.Return the summary for the template substitute.Return the usage of the template substitute term.getUsage()
The usage for the main term.toString()
Output of this enum class and main value.static GlossaryTermDefinition
Returns the enum constant of this class with the specified name.static GlossaryTermDefinition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PATIENT_IDENTIFIER
Unique identifier of patient. -
DATE_OF_BIRTH
Day, month and year that the patient was born. -
HEIGHT
Height of patient. -
WEIGHT
Weight of patient. -
BLOOD_PRESSURE
Blood pressure of patient (systolic and diastolic). -
MEASUREMENT_DATE
The date that the measurement was made. -
ANGLE_LEFT
The number of degrees of rotation of the left foot measured from vertical. -
ANGLE_RIGHT
The number of degrees of rotation of the right foot measured from vertical.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getQualifiedName
Qualified name of the main glossary term.- Returns:
- string
-
getTemplateSubstituteQualifiedName
Return the qualified name for the template substitute.- Returns:
- string
-
getName
Return the name of the main term.- Returns:
- string
-
getTemplateSubstituteName
Return the name of the template substitute term.- Returns:
- string
-
getSummary
Return the summary for the main term.- Returns:
- string
-
getTemplateSubstituteSummary
Return the summary for the template substitute.- Returns:
- string
-
getUsage
The usage for the main term.- Returns:
- string
-
getTemplateSubstituteUsage
Return the usage of the template substitute term.- Returns:
- string
-
getDescription
Return the description for this glossary term.- Returns:
- string
-
getAbbreviation
Return the short name (abbreviation) for the glossary term.- Returns:
- string
-
getCategory
Return the category for the main term - may be null.- Returns:
- category definition
-
getSubstituteCategory
Return the standard category for the template substitute.- Returns:
- category definition
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<GlossaryTermDefinition>
- Returns:
- string showing enum value
-