public enum RdsAccountStatus extends Enum<RdsAccountStatus>
| Enum Constant and Description |
|---|
Available |
Creating |
Deleting |
Unknown |
Updating |
| Modifier and Type | Method and Description |
|---|---|
static RdsAccountStatus |
create(String value) |
String |
getValue() |
String |
toString() |
static RdsAccountStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RdsAccountStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RdsAccountStatus Creating
public static final RdsAccountStatus Available
public static final RdsAccountStatus Updating
public static final RdsAccountStatus Deleting
public static final RdsAccountStatus Unknown
public static RdsAccountStatus[] values()
for (RdsAccountStatus c : RdsAccountStatus.values()) System.out.println(c);
public static RdsAccountStatus 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()
public String toString()
toString in class Enum<RdsAccountStatus>public static RdsAccountStatus create(String value)
Copyright © 2024. All rights reserved.