|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RemoteElasticInstanceState> com.atlassian.bamboo.agent.elastic.server.RemoteElasticInstanceState
public enum RemoteElasticInstanceState
Represents the state of a RemoteElasticInstance
Enum Constant Summary | |
---|---|
BIDDING
Instance is being bid upon |
|
FAILED_TO_START
The RemoteElasticInstance , for whatever reason, failed to start |
|
IDENTIFIED
The RemoteElasticInstance now has an EC2 instance ID. |
|
INITIAL
The initial state when the RemoteElasticInstance has been requested |
|
RUNNING
The RemoteElasticInstance now has an EC2 instance ID and the instance is now running |
|
SHUTTING_DOWN
The RemoteElasticInstance is shutting down |
|
STARTING
The RemoteElasticInstance is in the process of starting up. |
|
STOPPED
|
|
STOPPING
|
|
TERMINATED
The RemoteElasticInstance has terminated |
|
UNKNOWN
The State of the RemoteElasticInstance is unknown |
Method Summary | |
---|---|
boolean |
isFinal()
|
static RemoteElasticInstanceState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RemoteElasticInstanceState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RemoteElasticInstanceState INITIAL
RemoteElasticInstance
has been requested
public static final RemoteElasticInstanceState BIDDING
public static final RemoteElasticInstanceState STARTING
RemoteElasticInstance
is in the process of starting up. In this state no EC instance ID has been set.
public static final RemoteElasticInstanceState IDENTIFIED
RemoteElasticInstance
now has an EC2 instance ID.
public static final RemoteElasticInstanceState RUNNING
RemoteElasticInstance
now has an EC2 instance ID and the instance is now running
public static final RemoteElasticInstanceState STOPPING
public static final RemoteElasticInstanceState STOPPED
public static final RemoteElasticInstanceState SHUTTING_DOWN
RemoteElasticInstance
is shutting down
public static final RemoteElasticInstanceState TERMINATED
RemoteElasticInstance
has terminated
public static final RemoteElasticInstanceState FAILED_TO_START
RemoteElasticInstance
, for whatever reason, failed to start
public static final RemoteElasticInstanceState UNKNOWN
RemoteElasticInstance
is unknown
Method Detail |
---|
public static RemoteElasticInstanceState[] values()
for (RemoteElasticInstanceState c : RemoteElasticInstanceState.values()) System.out.println(c);
public static RemoteElasticInstanceState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean isFinal()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |