|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ResultCheckStyle> org.hibernate.annotations.ResultCheckStyle
public enum ResultCheckStyle
Possible checks on Sql Insert, Delete, Update
Enum Constant Summary | |
---|---|
COUNT
Perform row-count checking. |
|
NONE
Do not perform checking. |
|
PARAM
Essentially the same as COUNT except that the row count actually
comes from an output parameter registered as part of a
CallableStatement . |
Method Summary | |
---|---|
static ResultCheckStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ResultCheckStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ResultCheckStyle NONE
CallableStatement
execution in which the
checks are being performed explicitly and failures are handled through
propogation of SQLException
s.
public static final ResultCheckStyle COUNT
PreparedStatement.executeUpdate()
and
Statement.executeBatch()
. These values are checked
against some expected count.
public static final ResultCheckStyle PARAM
COUNT
except that the row count actually
comes from an output parameter registered as part of a
CallableStatement
. This style explicitly prohibits
statement batching from being used...
Method Detail |
---|
public static ResultCheckStyle[] values()
for (ResultCheckStyle c : ResultCheckStyle.values()) System.out.println(c);
public static ResultCheckStyle valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |