com.continuent.tungsten.common.mysql
Enum MySQLIOs.ExecuteQueryStatus
java.lang.Object
java.lang.Enum<MySQLIOs.ExecuteQueryStatus>
com.continuent.tungsten.common.mysql.MySQLIOs.ExecuteQueryStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<MySQLIOs.ExecuteQueryStatus>
- Enclosing class:
- MySQLIOs
public static enum MySQLIOs.ExecuteQueryStatus
- extends java.lang.Enum<MySQLIOs.ExecuteQueryStatus>
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
OK
public static final MySQLIOs.ExecuteQueryStatus OK
TOO_MANY_CONNECTIONS
public static final MySQLIOs.ExecuteQueryStatus TOO_MANY_CONNECTIONS
OPEN_FILE_LIMIT_ERROR
public static final MySQLIOs.ExecuteQueryStatus OPEN_FILE_LIMIT_ERROR
SOCKET_NO_IO
public static final MySQLIOs.ExecuteQueryStatus SOCKET_NO_IO
SOCKET_CONNECT_TIMEOUT
public static final MySQLIOs.ExecuteQueryStatus SOCKET_CONNECT_TIMEOUT
SEND_QUERY_TIMEOUT
public static final MySQLIOs.ExecuteQueryStatus SEND_QUERY_TIMEOUT
QUERY_RESULTS_TIMEOUT
public static final MySQLIOs.ExecuteQueryStatus QUERY_RESULTS_TIMEOUT
QUERY_EXEC_TIMEOUT
public static final MySQLIOs.ExecuteQueryStatus QUERY_EXEC_TIMEOUT
LOGIN_RESPONSE_TIMEOUT
public static final MySQLIOs.ExecuteQueryStatus LOGIN_RESPONSE_TIMEOUT
QUERY_TOO_LARGE
public static final MySQLIOs.ExecuteQueryStatus QUERY_TOO_LARGE
QUERY_RESULT_FAILED
public static final MySQLIOs.ExecuteQueryStatus QUERY_RESULT_FAILED
QUERY_EXECUTION_FAILED
public static final MySQLIOs.ExecuteQueryStatus QUERY_EXECUTION_FAILED
SOCKET_IO_ERROR
public static final MySQLIOs.ExecuteQueryStatus SOCKET_IO_ERROR
MYSQL_ERROR
public static final MySQLIOs.ExecuteQueryStatus MYSQL_ERROR
UNEXPECTED_EXCEPTION
public static final MySQLIOs.ExecuteQueryStatus UNEXPECTED_EXCEPTION
MYSQL_PREMATURE_EOF
public static final MySQLIOs.ExecuteQueryStatus MYSQL_PREMATURE_EOF
HOST_IS_DOWN
public static final MySQLIOs.ExecuteQueryStatus HOST_IS_DOWN
NO_ROUTE_TO_HOST
public static final MySQLIOs.ExecuteQueryStatus NO_ROUTE_TO_HOST
UNKNOWN_HOST
public static final MySQLIOs.ExecuteQueryStatus UNKNOWN_HOST
UNTRAPPED_CONDITION
public static final MySQLIOs.ExecuteQueryStatus UNTRAPPED_CONDITION
values
public static MySQLIOs.ExecuteQueryStatus[] 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 (MySQLIOs.ExecuteQueryStatus c : MySQLIOs.ExecuteQueryStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static MySQLIOs.ExecuteQueryStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null