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