Enum LoadSqlTuningSetDetails.LoadOption
- java.lang.Object
- 
- java.lang.Enum<LoadSqlTuningSetDetails.LoadOption>
- 
- com.oracle.bmc.databasemanagement.model.LoadSqlTuningSetDetails.LoadOption
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<LoadSqlTuningSetDetails.LoadOption>
 - Enclosing class:
- LoadSqlTuningSetDetails
 
 public static enum LoadSqlTuningSetDetails.LoadOption extends Enum<LoadSqlTuningSetDetails.LoadOption> implements BmcEnum Specifies which statements are loaded into the Sql tuning set.The possible values are. - INSERT (default) Adds only new statements. - UPDATE Updates existing the Sql statements and ignores any new statements. - MERGE Inserts new statements and updates the information of the existing ones. 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LoadSqlTuningSetDetails.LoadOptioncreate(String key)StringgetValue()static LoadSqlTuningSetDetails.LoadOptionvalueOf(String name)Returns the enum constant of this type with the specified name.static LoadSqlTuningSetDetails.LoadOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Insertpublic static final LoadSqlTuningSetDetails.LoadOption Insert 
 - 
Updatepublic static final LoadSqlTuningSetDetails.LoadOption Update 
 - 
Mergepublic static final LoadSqlTuningSetDetails.LoadOption Merge 
 
- 
 - 
Method Detail- 
valuespublic static LoadSqlTuningSetDetails.LoadOption[] 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 (LoadSqlTuningSetDetails.LoadOption c : LoadSqlTuningSetDetails.LoadOption.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LoadSqlTuningSetDetails.LoadOption 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static LoadSqlTuningSetDetails.LoadOption create(String key) 
 
- 
 
-