public enum SqlExecutionSkipCause extends java.lang.Enum<SqlExecutionSkipCause>
| Enum Constant and Description |
|---|
BATCH_TARGET_NONEXISTENT
there is no entity in the batch process
|
STATE_UNCHANGED
entity states are not changed in the update process
|
| Modifier and Type | Method and Description |
|---|---|
static SqlExecutionSkipCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlExecutionSkipCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlExecutionSkipCause STATE_UNCHANGED
public static final SqlExecutionSkipCause BATCH_TARGET_NONEXISTENT
public static SqlExecutionSkipCause[] values()
for (SqlExecutionSkipCause c : SqlExecutionSkipCause.values()) System.out.println(c);
public static SqlExecutionSkipCause valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null