public enum MySQLConnectionPhase extends Enum<MySQLConnectionPhase>
| Enum Constant and Description |
|---|
AUTH_PHASE_FAST_PATH |
AUTHENTICATION_METHOD_MISMATCH |
INITIAL_HANDSHAKE |
| Modifier and Type | Method and Description |
|---|---|
static MySQLConnectionPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySQLConnectionPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySQLConnectionPhase INITIAL_HANDSHAKE
public static final MySQLConnectionPhase AUTH_PHASE_FAST_PATH
public static final MySQLConnectionPhase AUTHENTICATION_METHOD_MISMATCH
public static MySQLConnectionPhase[] values()
for (MySQLConnectionPhase c : MySQLConnectionPhase.values()) System.out.println(c);
public static MySQLConnectionPhase 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 The Apache Software Foundation. All rights reserved.