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