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