@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AppType extends Enum<AppType>
Enum Constant and Description |
---|
Cassandra |
DB2 |
Dotnet |
DotnetCore |
DotNetFramework |
IBMWebSphere |
IIS |
Java |
JBoss |
MariaDB |
MongoDB |
MySQL |
Oracle |
OracleWebLogic |
Other |
PostgreSQLServer |
Spring |
SQLServer |
Sybase |
Tomcat |
Unknown |
VisualBasic |
Modifier and Type | Method and Description |
---|---|
static AppType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AppType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppType DotNetFramework
public static final AppType Java
public static final AppType SQLServer
public static final AppType IIS
public static final AppType Oracle
public static final AppType Other
public static final AppType Tomcat
public static final AppType JBoss
public static final AppType Spring
public static final AppType MongoDB
public static final AppType DB2
public static final AppType MariaDB
public static final AppType MySQL
public static final AppType Sybase
public static final AppType PostgreSQLServer
public static final AppType Cassandra
public static final AppType IBMWebSphere
public static final AppType OracleWebLogic
public static final AppType VisualBasic
public static final AppType Unknown
public static final AppType DotnetCore
public static final AppType Dotnet
public static AppType[] values()
for (AppType c : AppType.values()) System.out.println(c);
public static AppType 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 AppType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.