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