public static enum LoadSqlTuningSetDetails.UpdateCondition extends Enum<LoadSqlTuningSetDetails.UpdateCondition> implements BmcEnum
Specifies when to perform the update. The procedure only performs the update when the specified condition is satisfied. The condition can refer to either the data source or destination. The condition must use the following prefixes to refer to attributes from the source or the destination: OLD — Refers to statement attributes from the SQL tuning set (destination). NEW — Refers to statement attributes from the input statements (source). NULL — No updates are performed.
Modifier and Type | Method and Description |
---|---|
static LoadSqlTuningSetDetails.UpdateCondition |
create(String key) |
String |
getValue() |
static LoadSqlTuningSetDetails.UpdateCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadSqlTuningSetDetails.UpdateCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadSqlTuningSetDetails.UpdateCondition Old
public static final LoadSqlTuningSetDetails.UpdateCondition New
public static final LoadSqlTuningSetDetails.UpdateCondition Null
public static LoadSqlTuningSetDetails.UpdateCondition[] values()
for (LoadSqlTuningSetDetails.UpdateCondition c : LoadSqlTuningSetDetails.UpdateCondition.values()) System.out.println(c);
public static LoadSqlTuningSetDetails.UpdateCondition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static LoadSqlTuningSetDetails.UpdateCondition create(String key)
Copyright © 2016–2024. All rights reserved.