Enum SaveSqlTuningSetAsDetails.PlanFilter
- java.lang.Object
-
- java.lang.Enum<SaveSqlTuningSetAsDetails.PlanFilter>
-
- com.oracle.bmc.databasemanagement.model.SaveSqlTuningSetAsDetails.PlanFilter
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<SaveSqlTuningSetAsDetails.PlanFilter>
- Enclosing class:
- SaveSqlTuningSetAsDetails
public static enum SaveSqlTuningSetAsDetails.PlanFilter extends Enum<SaveSqlTuningSetAsDetails.PlanFilter> implements BmcEnum
Specifies the plan filter.This parameter enables you to select a single plan when a statement has multiple plans. Refer to the documentation https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_SQLSET.html#GUID-9D995019-91AB-4B1E-9EAF-031050789B21
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FirstGenerated
FirstLoaded
LastGenerated
LastLoaded
MaxBufferGets
MaxDirectWrites
MaxDiskReads
MaxElapsedTime
MaxOptimizerCost
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SaveSqlTuningSetAsDetails.PlanFilter
create(String key)
String
getValue()
static SaveSqlTuningSetAsDetails.PlanFilter
valueOf(String name)
Returns the enum constant of this type with the specified name.static SaveSqlTuningSetAsDetails.PlanFilter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LastGenerated
public static final SaveSqlTuningSetAsDetails.PlanFilter LastGenerated
-
FirstGenerated
public static final SaveSqlTuningSetAsDetails.PlanFilter FirstGenerated
-
LastLoaded
public static final SaveSqlTuningSetAsDetails.PlanFilter LastLoaded
-
FirstLoaded
public static final SaveSqlTuningSetAsDetails.PlanFilter FirstLoaded
-
MaxElapsedTime
public static final SaveSqlTuningSetAsDetails.PlanFilter MaxElapsedTime
-
MaxBufferGets
public static final SaveSqlTuningSetAsDetails.PlanFilter MaxBufferGets
-
MaxDiskReads
public static final SaveSqlTuningSetAsDetails.PlanFilter MaxDiskReads
-
MaxDirectWrites
public static final SaveSqlTuningSetAsDetails.PlanFilter MaxDirectWrites
-
MaxOptimizerCost
public static final SaveSqlTuningSetAsDetails.PlanFilter MaxOptimizerCost
-
-
Method Detail
-
values
public static SaveSqlTuningSetAsDetails.PlanFilter[] 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 (SaveSqlTuningSetAsDetails.PlanFilter c : SaveSqlTuningSetAsDetails.PlanFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SaveSqlTuningSetAsDetails.PlanFilter 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 SaveSqlTuningSetAsDetails.PlanFilter create(String key)
-
-