Package com.oracle.bmc.datacatalog.model
Enum TermWorkflowStatus
- java.lang.Object
-
- java.lang.Enum<TermWorkflowStatus>
-
- com.oracle.bmc.datacatalog.model.TermWorkflowStatus
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<TermWorkflowStatus>
@Generated(value="OracleSDKGenerator", comments="API Version: 20190325") public enum TermWorkflowStatus extends Enum<TermWorkflowStatus> implements BmcEnum
A term workflow is a sequence of steps or tasks usually done by a data steward as part of the governance lifecycle.Business terms cannot be used for tagging unless they are APPROVED by the busines term owner (usually a data steward). By default, most terms, when created, are in the NEW status unless specified otherwise. NEW - This is the default workflow status when a term is newly created. The owner can override this status during the creation. APPROVED - This term is ready for use. It can be used to tag data assets, data entities, attributes, and other taggable resources. UNDER_REVIEW - The term is currently under review and cannot be used until it is in APPROVED status. ESCALATED - The review of this term is escalated to fast track for use in tagging.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Approved
Escalated
New
UnderReview
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TermWorkflowStatus
create(String key)
String
getValue()
static TermWorkflowStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static TermWorkflowStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
New
public static final TermWorkflowStatus New
-
Approved
public static final TermWorkflowStatus Approved
-
UnderReview
public static final TermWorkflowStatus UnderReview
-
Escalated
public static final TermWorkflowStatus Escalated
-
UnknownEnumValue
public static final TermWorkflowStatus UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static TermWorkflowStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TermWorkflowStatus c : TermWorkflowStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TermWorkflowStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static TermWorkflowStatus create(String key)
-
-