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