org.jclouds.savvis.vpdc.domain
Enum Task.Status

java.lang.Object
  extended by java.lang.Enum<Task.Status>
      extended by org.jclouds.savvis.vpdc.domain.Task.Status
All Implemented Interfaces:
Serializable, Comparable<Task.Status>
Enclosing class:
Task

public static enum Task.Status
extends Enum<Task.Status>


Enum Constant Summary
ERROR
          Savvis VPDC is failed, please kindly contact Savvis administrator for further clarification/assistance with the respective request data.
NONE
          Unexpected Savvus VPDC Status, Savvis VPDC is failed, please kindly contact Savvis administrator for further clarification/assistance with the respective request data.
QUEUED
          Savvis VPDC is processing the user request, please wait for the provisioning process to complete.
RUNNING
          Savvis VPDC is processing the user request, please wait for the provisioning process to complete.
SUCCESS
          Savvis VPDC successfully provisioned and available for use.
UNRECOGNIZED
           
 
Method Summary
static Task.Status fromValue(String status)
           
 String toString()
           
 String value()
           
static Task.Status valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Task.Status[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUCCESS

public static final Task.Status SUCCESS
Savvis VPDC successfully provisioned and available for use.


RUNNING

public static final Task.Status RUNNING
Savvis VPDC is processing the user request, please wait for the provisioning process to complete.


QUEUED

public static final Task.Status QUEUED
Savvis VPDC is processing the user request, please wait for the provisioning process to complete.


ERROR

public static final Task.Status ERROR
Savvis VPDC is failed, please kindly contact Savvis administrator for further clarification/assistance with the respective request data.


NONE

public static final Task.Status NONE
Unexpected Savvus VPDC Status, Savvis VPDC is failed, please kindly contact Savvis administrator for further clarification/assistance with the respective request data.


UNRECOGNIZED

public static final Task.Status UNRECOGNIZED
Method Detail

values

public static Task.Status[] 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 (Task.Status c : Task.Status.values())
    System.out.println(c);

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

valueOf

public static Task.Status valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

toString

public String toString()
Overrides:
toString in class Enum<Task.Status>

fromValue

public static Task.Status fromValue(String status)


Copyright © 2009-2011 jclouds. All Rights Reserved.