Package com.oracle.bmc.dataflow.model
Enum SqlEndpointLogOperation
- java.lang.Object
-
- java.lang.Enum<SqlEndpointLogOperation>
-
- com.oracle.bmc.dataflow.model.SqlEndpointLogOperation
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<SqlEndpointLogOperation>
@Generated(value="OracleSDKGenerator", comments="API Version: 20200129") public enum SqlEndpointLogOperation extends Enum<SqlEndpointLogOperation> implements BmcEnumCommon log operation for a Sql Endpoint: ENABLE - Enable the log for the Sql endpoint.DISABLE - Disable the log for the Sql endpoint. DELETE - Delete the log for the Sql endpoint.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SqlEndpointLogOperationcreate(String key)StringgetValue()static SqlEndpointLogOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static SqlEndpointLogOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Enable
public static final SqlEndpointLogOperation Enable
-
Disable
public static final SqlEndpointLogOperation Disable
-
Delete
public static final SqlEndpointLogOperation Delete
-
-
Method Detail
-
values
public static SqlEndpointLogOperation[] 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 (SqlEndpointLogOperation c : SqlEndpointLogOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlEndpointLogOperation 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 SqlEndpointLogOperation create(String key)
-
-