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