Enum SaveSqlTuningSetAsDetails.LoadOption
- java.lang.Object
- 
- java.lang.Enum<SaveSqlTuningSetAsDetails.LoadOption>
- 
- com.oracle.bmc.databasemanagement.model.SaveSqlTuningSetAsDetails.LoadOption
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<SaveSqlTuningSetAsDetails.LoadOption>
 - Enclosing class:
- SaveSqlTuningSetAsDetails
 
 public static enum SaveSqlTuningSetAsDetails.LoadOption extends Enum<SaveSqlTuningSetAsDetails.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 SaveSqlTuningSetAsDetails.LoadOptioncreate(String key)StringgetValue()static SaveSqlTuningSetAsDetails.LoadOptionvalueOf(String name)Returns the enum constant of this type with the specified name.static SaveSqlTuningSetAsDetails.LoadOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Insertpublic static final SaveSqlTuningSetAsDetails.LoadOption Insert 
 - 
Updatepublic static final SaveSqlTuningSetAsDetails.LoadOption Update 
 - 
Mergepublic static final SaveSqlTuningSetAsDetails.LoadOption Merge 
 
- 
 - 
Method Detail- 
valuespublic static SaveSqlTuningSetAsDetails.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 (SaveSqlTuningSetAsDetails.LoadOption c : SaveSqlTuningSetAsDetails.LoadOption.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SaveSqlTuningSetAsDetails.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 SaveSqlTuningSetAsDetails.LoadOption create(String key) 
 
- 
 
-