@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum Tier extends Enum<Tier>
Enum Constant and Description |
---|
CUSTOM |
DEFAULT |
DOT_NET_CORE |
DOT_NET_WEB |
DOT_NET_WEB_TIER |
DOT_NET_WORKER |
JAVA_JMX |
MYSQL |
ORACLE |
POSTGRESQL |
SQL_SERVER |
SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP |
Modifier and Type | Method and Description |
---|---|
static Tier |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static Tier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tier CUSTOM
public static final Tier DEFAULT
public static final Tier DOT_NET_CORE
public static final Tier DOT_NET_WORKER
public static final Tier DOT_NET_WEB_TIER
public static final Tier DOT_NET_WEB
public static final Tier SQL_SERVER
public static final Tier SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP
public static final Tier MYSQL
public static final Tier POSTGRESQL
public static final Tier JAVA_JMX
public static final Tier ORACLE
public static Tier[] values()
for (Tier c : Tier.values()) System.out.println(c);
public static Tier 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 Tier fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.