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