public enum MySQLStatusFlag extends Enum<MySQLStatusFlag>
| Modifier and Type | Method and Description |
|---|---|
static MySQLStatusFlag |
valueOf(int value)
Value of MySQL status flag.
|
static MySQLStatusFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySQLStatusFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySQLStatusFlag SERVER_STATUS_IN_TRANS
public static final MySQLStatusFlag SERVER_STATUS_AUTOCOMMIT
public static final MySQLStatusFlag SERVER_MORE_RESULTS_EXISTS
public static final MySQLStatusFlag SERVER_STATUS_NO_GOOD_INDEX_USED
public static final MySQLStatusFlag SERVER_STATUS_NO_INDEX_USED
public static final MySQLStatusFlag SERVER_STATUS_CURSOR_EXISTS
public static final MySQLStatusFlag SERVER_STATUS_LAST_ROW_SENT
public static final MySQLStatusFlag SERVER_STATUS_DB_DROPPED
public static final MySQLStatusFlag SERVER_STATUS_NO_BACKSLASH_ESCAPES
public static final MySQLStatusFlag SERVER_STATUS_METADATA_CHANGED
public static final MySQLStatusFlag SERVER_QUERY_WAS_SLOW
public static final MySQLStatusFlag SERVER_PS_OUT_PARAMS
public static final MySQLStatusFlag SERVER_STATUS_IN_TRANS_READONLY
public static final MySQLStatusFlag SERVER_SESSION_STATE_CHANGED
public static MySQLStatusFlag[] values()
for (MySQLStatusFlag c : MySQLStatusFlag.values()) System.out.println(c);
public static MySQLStatusFlag 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 nullpublic static MySQLStatusFlag valueOf(int value)
value - valueCopyright © 2023 The Apache Software Foundation. All rights reserved.