com.atlassian.bamboo.agent.elastic.server
Enum RemoteElasticInstanceState

java.lang.Object
  extended by java.lang.Enum<RemoteElasticInstanceState>
      extended by com.atlassian.bamboo.agent.elastic.server.RemoteElasticInstanceState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RemoteElasticInstanceState>

public enum RemoteElasticInstanceState
extends java.lang.Enum<RemoteElasticInstanceState>


Enum Constant Summary
FAILED_TO_START
           
IDENTIFIED
          The RemoteElasticInstance now has an EC2 instance ID.
INITIAL
           
RUNNING
           
SHUTTING_DOWN
           
STARTING
           
TERMINATED
           
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

INITIAL

public static final RemoteElasticInstanceState INITIAL

STARTING

public static final RemoteElasticInstanceState STARTING

IDENTIFIED

public static final RemoteElasticInstanceState IDENTIFIED

The RemoteElasticInstance now has an EC2 instance ID.


RUNNING

public static final RemoteElasticInstanceState RUNNING

SHUTTING_DOWN

public static final RemoteElasticInstanceState SHUTTING_DOWN

TERMINATED

public static final RemoteElasticInstanceState TERMINATED

FAILED_TO_START

public static final RemoteElasticInstanceState FAILED_TO_START

UNKNOWN

public static final RemoteElasticInstanceState UNKNOWN
Method Detail

values

public static RemoteElasticInstanceState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RemoteElasticInstanceState c : RemoteElasticInstanceState.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RemoteElasticInstanceState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

isFinal

public boolean isFinal()


Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.