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