Enum SQLStateType
- java.lang.Object
-
- java.lang.Enum<SQLStateType>
-
- org.hibernate.engine.jdbc.env.spi.SQLStateType
-
- All Implemented Interfaces:
Serializable
,Comparable<SQLStateType>
public enum SQLStateType extends Enum<SQLStateType>
Enum interpretation of the valid values fromDatabaseMetaData.getSQLStateType()
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SQLStateType
interpretReportedSQLStateType(int sqlStateType)
static SQLStateType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SQLStateType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XOpen
public static final SQLStateType XOpen
The reported codes follow the X/Open spec
-
SQL99
public static final SQLStateType SQL99
The reported codes follow the SQL spec
-
UNKNOWN
public static final SQLStateType UNKNOWN
It is unknown. Might follow another spec completely, or be a mixture.
-
-
Method Detail
-
values
public static SQLStateType[] 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 (SQLStateType c : SQLStateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SQLStateType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
interpretReportedSQLStateType
public static SQLStateType interpretReportedSQLStateType(int sqlStateType)
-
-