Package com.adbs.syntax
Enum OracleSQLModelUpdateType
- java.lang.Object
- 
- java.lang.Enum<OracleSQLModelUpdateType>
- 
- com.adbs.syntax.OracleSQLModelUpdateType
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<OracleSQLModelUpdateType>
 
 public enum OracleSQLModelUpdateType extends java.lang.Enum<OracleSQLModelUpdateType> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static OracleSQLModelUpdateTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OracleSQLModelUpdateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Nonepublic static final OracleSQLModelUpdateType None 
 - 
Updatepublic static final OracleSQLModelUpdateType Update 
 - 
Upsertpublic static final OracleSQLModelUpdateType Upsert 
 - 
UpsertAllpublic static final OracleSQLModelUpdateType UpsertAll 
 
- 
 - 
Method Detail- 
valuespublic static OracleSQLModelUpdateType[] 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 (OracleSQLModelUpdateType c : OracleSQLModelUpdateType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static OracleSQLModelUpdateType valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-