public static enum AbstractDbManager.ExcCheckType extends java.lang.Enum<AbstractDbManager.ExcCheckType>
Enum Constant and Description |
---|
CONN_CLOSED |
CONSTR_VIOLATION_ON_DELETE |
CONSTR_VIOLATION_ON_UPDATE |
DBMS_CONN_FAILURE |
DBMS_CREATEUSER_FAILURE |
INVALID_CREDENTIALS |
Modifier and Type | Method and Description |
---|---|
static AbstractDbManager.ExcCheckType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractDbManager.ExcCheckType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractDbManager.ExcCheckType INVALID_CREDENTIALS
public static final AbstractDbManager.ExcCheckType CONN_CLOSED
public static final AbstractDbManager.ExcCheckType CONSTR_VIOLATION_ON_UPDATE
public static final AbstractDbManager.ExcCheckType CONSTR_VIOLATION_ON_DELETE
public static final AbstractDbManager.ExcCheckType DBMS_CONN_FAILURE
public static final AbstractDbManager.ExcCheckType DBMS_CREATEUSER_FAILURE
public static AbstractDbManager.ExcCheckType[] values()
for (AbstractDbManager.ExcCheckType c : AbstractDbManager.ExcCheckType.values()) System.out.println(c);
public static AbstractDbManager.ExcCheckType 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