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 input) |
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.
|
@SerializedName(value="MYSQL") public static final ScmDbType MYSQL
@SerializedName(value="POSTGRESQL") public static final ScmDbType POSTGRESQL
@SerializedName(value="HSQL") public static final ScmDbType HSQL
@SerializedName(value="ORACLE") public static final ScmDbType ORACLE
@SerializedName(value="DERBY") public static final ScmDbType DERBY
@SerializedName(value="SQLITE3") 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 © 2024. All rights reserved.