public static enum AbstractInfoToken.Classification extends Enum<AbstractInfoToken.Classification>
| Enum Constant and Description |
|---|
ALL_TASKS_PROBLEM
Indicates that a problem has been encountered that affects all tasks in the current database, but it is unlikely that the database itself has been damaged.
|
DATABASE_ENGINE_FAILURE
There is a problem in the Database Engine software, but the SQL statement completes execution, and the connection to the instance of the Database Engine is maintained.
|
DATABASE_INTEGRITY_PROBLEM
Indicates that the integrity of the entire database is in question because of a hardware or software problem.
|
DATABASE_LIMIT
A non-configurable Database Engine limit has been exceeded and the current SQL batch has been terminated.
|
GENERAL_ERROR
General errors that can be corrected by the user.
|
INCONSISTENT_NO_LOCK
A special severity for SQL statements that do not use locking because of special options.
|
INDEX_PROBLEM
Indicates that the table or index specified in the message has been damaged by a software or hardware problem.
|
INFORMATIONAL
Informational messages that return status information or report errors that are not severe.
|
MEDIA_ERROR
Indicates a media failure.
|
OBJECT_DOES_NOT_EXIST
The given object or entity does not exist.
|
OUT_OF_RESOURCES
The SQL statement caused the database server to run out of resources (such as memory, locks, or disk space for the database) or to exceed some limit set by the system administrator.
|
SECURITY
Security-related errors, such as permission denied.
|
SYNTAX_ERROR
Syntax errors in the SQL statement.
|
SYSTEM_SQL_PROBLEM
Indicates that a SQL statement has encountered a problem.
|
TX_DEADLOCK
Transaction deadlock errors.
|
UNKNOWN
Unknown classification.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractInfoToken.Classification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractInfoToken.Classification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractInfoToken.Classification INFORMATIONAL
public static final AbstractInfoToken.Classification OBJECT_DOES_NOT_EXIST
public static final AbstractInfoToken.Classification INCONSISTENT_NO_LOCK
public static final AbstractInfoToken.Classification TX_DEADLOCK
public static final AbstractInfoToken.Classification SECURITY
public static final AbstractInfoToken.Classification SYNTAX_ERROR
public static final AbstractInfoToken.Classification GENERAL_ERROR
public static final AbstractInfoToken.Classification OUT_OF_RESOURCES
public static final AbstractInfoToken.Classification DATABASE_ENGINE_FAILURE
public static final AbstractInfoToken.Classification DATABASE_LIMIT
public static final AbstractInfoToken.Classification SYSTEM_SQL_PROBLEM
public static final AbstractInfoToken.Classification ALL_TASKS_PROBLEM
public static final AbstractInfoToken.Classification INDEX_PROBLEM
public static final AbstractInfoToken.Classification DATABASE_INTEGRITY_PROBLEM
public static final AbstractInfoToken.Classification MEDIA_ERROR
public static final AbstractInfoToken.Classification UNKNOWN
public static AbstractInfoToken.Classification[] values()
for (AbstractInfoToken.Classification c : AbstractInfoToken.Classification.values()) System.out.println(c);
public static AbstractInfoToken.Classification valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.