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