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