Enum SqlTuningSetStatusTypes
- java.lang.Object
-
- java.lang.Enum<SqlTuningSetStatusTypes>
-
- com.oracle.bmc.databasemanagement.model.SqlTuningSetStatusTypes
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<SqlTuningSetStatusTypes>
@Generated(value="OracleSDKGenerator", comments="API Version: 20201101") public enum SqlTuningSetStatusTypes extends Enum<SqlTuningSetStatusTypes> implements BmcEnum
The status types of a Sql Tuning Set.Refer to the following documentaion for details https://docs.oracle.com/en/database/oracle/oracle-database/19/refrn/ALL_SCHEDULER_JOBS.html#GUID-D72A57AD-96EB-4FB9-A599-33CB238AFA62
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Blocked
Broken
ChainStalled
Completed
Disabled
Failed
Remote
ResourceUnavailable
RetryScheduled
Running
Scheduled
Succeeded
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 SqlTuningSetStatusTypes
create(String key)
String
getValue()
static SqlTuningSetStatusTypes
valueOf(String name)
Returns the enum constant of this type with the specified name.static SqlTuningSetStatusTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Disabled
public static final SqlTuningSetStatusTypes Disabled
-
RetryScheduled
public static final SqlTuningSetStatusTypes RetryScheduled
-
Scheduled
public static final SqlTuningSetStatusTypes Scheduled
-
Blocked
public static final SqlTuningSetStatusTypes Blocked
-
Running
public static final SqlTuningSetStatusTypes Running
-
Completed
public static final SqlTuningSetStatusTypes Completed
-
Broken
public static final SqlTuningSetStatusTypes Broken
-
Failed
public static final SqlTuningSetStatusTypes Failed
-
Remote
public static final SqlTuningSetStatusTypes Remote
-
ResourceUnavailable
public static final SqlTuningSetStatusTypes ResourceUnavailable
-
Succeeded
public static final SqlTuningSetStatusTypes Succeeded
-
ChainStalled
public static final SqlTuningSetStatusTypes ChainStalled
-
UnknownEnumValue
public static final SqlTuningSetStatusTypes 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 SqlTuningSetStatusTypes[] 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 (SqlTuningSetStatusTypes c : SqlTuningSetStatusTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlTuningSetStatusTypes 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 SqlTuningSetStatusTypes create(String key)
-
-