Uses of Class
org.hibernate.exception.ConstraintViolationException.ConstraintKind
-
Packages that use ConstraintViolationException.ConstraintKind Package Description org.hibernate.exception Defines certain very important flavors ofJDBCException
, along with an SPI for interpreting product-specificSQLException
s arising from a JDBC driver into something more uniform and meaningful. -
-
Uses of ConstraintViolationException.ConstraintKind in org.hibernate.exception
Methods in org.hibernate.exception that return ConstraintViolationException.ConstraintKind Modifier and Type Method Description ConstraintViolationException.ConstraintKind
ConstraintViolationException. getKind()
Returns the kind of constraint that was violated.static ConstraintViolationException.ConstraintKind
ConstraintViolationException.ConstraintKind. valueOf(String name)
Returns the enum constant of this type with the specified name.static ConstraintViolationException.ConstraintKind[]
ConstraintViolationException.ConstraintKind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.hibernate.exception with parameters of type ConstraintViolationException.ConstraintKind Constructor Description ConstraintViolationException(String message, SQLException root, String sql, ConstraintViolationException.ConstraintKind kind, @Nullable String constraintName)
ConstraintViolationException(String message, SQLException root, ConstraintViolationException.ConstraintKind kind, @Nullable String constraintName)
-