com.vmware.vcloud.sdk.constants
Enum VappTemplateStatus

java.lang.Object
  extended by java.lang.Enum<VappTemplateStatus>
      extended by com.vmware.vcloud.sdk.constants.VappTemplateStatus
All Implemented Interfaces:
Serializable, Comparable<VappTemplateStatus>

public enum VappTemplateStatus
extends Enum<VappTemplateStatus>

This enum represents the differnet vAppTemplate status.

Since:
API 1.5, SDK 1.5
Author:
Ecosystem Engineering

Enum Constant Summary
COPYING_CONTENTS
           
DESCRIPTOR_PENDING
           
DISK_CONTENTS_PENDING
           
FAILED_CREATION
           
MIXED
           
POWERED_OFF
           
QUARANTINE_EXPIRED
           
QUARANTINED
           
REJECTED
           
RESOLVED
           
TRANSFER_TIMEOUT
           
UNKNOWN
           
UNRECOGNIZED
           
UNRESOLVED
           
 
Method Summary
static VappTemplateStatus fromValue(int value)
           
 int value()
           
static VappTemplateStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VappTemplateStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FAILED_CREATION

public static final VappTemplateStatus FAILED_CREATION

UNRESOLVED

public static final VappTemplateStatus UNRESOLVED

RESOLVED

public static final VappTemplateStatus RESOLVED

UNKNOWN

public static final VappTemplateStatus UNKNOWN

UNRECOGNIZED

public static final VappTemplateStatus UNRECOGNIZED

POWERED_OFF

public static final VappTemplateStatus POWERED_OFF

MIXED

public static final VappTemplateStatus MIXED

DESCRIPTOR_PENDING

public static final VappTemplateStatus DESCRIPTOR_PENDING

COPYING_CONTENTS

public static final VappTemplateStatus COPYING_CONTENTS

DISK_CONTENTS_PENDING

public static final VappTemplateStatus DISK_CONTENTS_PENDING

QUARANTINED

public static final VappTemplateStatus QUARANTINED

QUARANTINE_EXPIRED

public static final VappTemplateStatus QUARANTINE_EXPIRED

REJECTED

public static final VappTemplateStatus REJECTED

TRANSFER_TIMEOUT

public static final VappTemplateStatus TRANSFER_TIMEOUT
Method Detail

values

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

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

valueOf

public static VappTemplateStatus 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 int value()

fromValue

public static VappTemplateStatus fromValue(int value)


Copyright © 2016. All Rights Reserved.