public enum ScmDbType extends Enum<ScmDbType>
Modifier and Type | Class and Description |
---|---|
static class |
ScmDbType.Adapter |
Enum Constant and Description |
---|
DERBY |
HSQL |
MYSQL |
ORACLE |
POSTGRESQL |
SQLITE3 |
Modifier and Type | Method and Description |
---|---|
static ScmDbType |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static ScmDbType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScmDbType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScmDbType MYSQL
public static final ScmDbType POSTGRESQL
public static final ScmDbType HSQL
public static final ScmDbType ORACLE
public static final ScmDbType DERBY
public static final ScmDbType SQLITE3
public static ScmDbType[] values()
for (ScmDbType c : ScmDbType.values()) System.out.println(c);
public static ScmDbType 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 getValue()
Copyright © 2019. All rights reserved.