public enum StackStatus extends Enum<StackStatus>
Enum Constant and Description |
---|
CREATE_COMPLETE |
CREATE_FAILED |
CREATE_IN_PROGRESS |
DELETE_COMPLETE |
DELETE_FAILED |
DELETE_IN_PROGRESS |
FAILED |
TIMEOUT |
UNDEFINED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static StackStatus |
getEnum(String status) |
String |
toString() |
static StackStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackStatus UNKNOWN
public static final StackStatus FAILED
public static final StackStatus CREATE_FAILED
public static final StackStatus UNDEFINED
public static final StackStatus TIMEOUT
public static final StackStatus DELETE_COMPLETE
public static final StackStatus CREATE_COMPLETE
public static final StackStatus DELETE_FAILED
public static final StackStatus CREATE_IN_PROGRESS
public static final StackStatus DELETE_IN_PROGRESS
public static StackStatus[] values()
for (StackStatus c : StackStatus.values()) System.out.println(c);
public static StackStatus 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<StackStatus>
public static StackStatus getEnum(String status)
Copyright © 2016. All rights reserved.