public final enum

ResultCheckStyle

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.hibernate.annotations.ResultCheckStyle

Class Overview

Possible checks on Sql Insert, Delete, Update

Summary

Enum Values
ResultCheckStyle  COUNT  Perform row-count checking. 
ResultCheckStyle  NONE  Do not perform checking. 
ResultCheckStyle  PARAM  Essentially the same as COUNT except that the row count actually comes from an output parameter registered as part of a CallableStatement
Public Methods
static ResultCheckStyle valueOf(String name)
final static ResultCheckStyle[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ResultCheckStyle COUNT

Perform row-count checking. Row counts are the int values returned by both executeUpdate() and executeBatch(). These values are checked against some expected count.

public static final ResultCheckStyle NONE

Do not perform checking. Either user simply does not want checking, or is indicating a CallableStatement execution in which the checks are being performed explicitly and failures are handled through propogation of SQLExceptions.

public static final ResultCheckStyle PARAM

Essentially the same as 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...

Public Methods

public static ResultCheckStyle valueOf (String name)

public static final ResultCheckStyle[] values ()