Enum Class AtlasTermAssignmentStatus
java.lang.Object
java.lang.Enum<AtlasTermAssignmentStatus>
org.odpi.openmetadata.adapters.connectors.apacheatlas.resource.properties.AtlasTermAssignmentStatus
- All Implemented Interfaces:
Serializable
,Comparable<AtlasTermAssignmentStatus>
,Constable
AtlasTermAssignmentStatus describes the status of a semantic assignment relationship.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe assignment has been deprecated and should not be used.The assignment has been discovered by an automated process.The assignment has been imported from an external system.The assignment must not be used.Another assignment status.The assignment has been proposed by a consumer.The assignment has been validated by a subject-matter expert, -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Retrieve the value.toString()
static AtlasTermAssignmentStatus
Returns the enum constant of this class with the specified name.static AtlasTermAssignmentStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISCOVERED
The assignment has been discovered by an automated process. -
PROPOSED
The assignment has been proposed by a consumer. -
IMPORTED
The assignment has been imported from an external system. -
VALIDATED
The assignment has been validated by a subject-matter expert, -
DEPRECATED
The assignment has been deprecated and should not be used. -
OBSOLETE
The assignment must not be used. -
OTHER
Another assignment status.
-
-
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
-
getValue
public int getValue()Retrieve the value.- Returns:
- int
-
toString
- Overrides:
toString
in classEnum<AtlasTermAssignmentStatus>
-