Enum Class AtlasTermRelationshipStatus
java.lang.Object
java.lang.Enum<AtlasTermRelationshipStatus>
org.odpi.openmetadata.adapters.connectors.apacheatlas.resource.properties.AtlasTermRelationshipStatus
- All Implemented Interfaces:
Serializable
,Comparable<AtlasTermRelationshipStatus>
,Constable
AtlasTermRelationshipStatus describes the status of a relationship between terms.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe relationship is in use.The relationship has been deprecated and should not be used.The relationship has been proposed.The relationship must not be used.Another relationship status. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Retrieve the value.toString()
static AtlasTermRelationshipStatus
Returns the enum constant of this class with the specified name.static AtlasTermRelationshipStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DRAFT
The relationship has been proposed. -
ACTIVE
The relationship is in use. -
DEPRECATED
The relationship has been deprecated and should not be used. -
OBSOLETE
The relationship must not be used. -
OTHER
Another relationship 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<AtlasTermRelationshipStatus>
-