Enum Class OrganizationTypeDefinition
java.lang.Object
java.lang.Enum<OrganizationTypeDefinition>
org.odpi.openmetadata.samples.archiveutilities.organization.OrganizationTypeDefinition
- All Implemented Interfaces:
Serializable
,Comparable<OrganizationTypeDefinition>
,Constable
The OrganizationTypeDefinition is used to feed the definition of the different organizations involved in Coco Pharmaceuticals scenarios.
It is the value that is stored in the "teamType" properties of the Team entity and is defined in the OrganizationTypes valid value set.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis is for the Team entity that defines the membership of a self-organizing community of interest.This is for an internal department's Team entity.This is for a business partner's Organization entity.This is the controlling organization that is the decision maker and owner of the open metadata landscape.This is for the Team entity that defines the contributors to a project/campaign. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionReturn the description of the value's meaning.Return the printable name.This is the preferred value that applications should use for this valid value.getUsage()
Return how the value should be used.toString()
Output of this enum class and main value.static OrganizationTypeDefinition
Returns the enum constant of this class with the specified name.static OrganizationTypeDefinition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PRIMARY
This is the controlling organization that is the decision maker and owner of the open metadata landscape. -
PARTNER
This is for a business partner's Organization entity. -
DEPT
This is for an internal department's Team entity. -
COMMUNITY
This is for the Team entity that defines the membership of a self-organizing community of interest. -
PROJECT
This is for the Team entity that defines the contributors to a project/campaign.
-
-
Field Details
-
validValueSetName
- See Also:
-
validValueSetDescription
- See Also:
-
validValueSetUsage
- See Also:
-
validValueSetScope
- See Also:
-
-
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
-
getPreferredValue
This is the preferred value that applications should use for this valid value.- Returns:
- string value
-
getDisplayName
Return the printable name.- Returns:
- string name
-
getDescription
Return the description of the value's meaning.- Returns:
- string text
-
getUsage
Return how the value should be used.- Returns:
- string text
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<OrganizationTypeDefinition>
- Returns:
- string showing enum value
-