public enum Status extends Enum<Status>
Enum Constant and Description |
---|
COPYING
The
VAppTemplate Upload initiated, copying contents |
DEPLOYED
The object is deployed.
|
ERROR
|
INCONSISTENT
|
MIXED
The
VAppTemplate or VApp have children do not all have the same status. |
OFF
|
ON
|
PENDING_CONTENTS
The
VAppTemplate Upload initiated, disk contents pending |
PENDING_DESCRIPTOR
The
VAppTemplate Upload initiated, OVF descriptor pending |
QUARANTINE_EXPIRED
The
VAppTemplate Upload quarantine period has expired |
QUARANTINED
The
VAppTemplate Upload has been quarantined |
RESOLVED
|
SUSPENDED
|
UNKNOWN
|
UNRECOGNIZED
|
UNRESOLVED
|
WAITING_FOR_INPUT
|
Modifier and Type | Method and Description |
---|---|
static Status |
fromValue(int v) |
static Status |
fromValue(String status) |
String |
value() |
static Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status ERROR
public static final Status UNRESOLVED
public static final Status RESOLVED
public static final Status DEPLOYED
public static final Status SUSPENDED
public static final Status ON
public static final Status WAITING_FOR_INPUT
public static final Status UNKNOWN
public static final Status UNRECOGNIZED
public static final Status OFF
public static final Status INCONSISTENT
public static final Status MIXED
VAppTemplate
or VApp
have children do not all have the same status.public static final Status PENDING_DESCRIPTOR
VAppTemplate
Upload initiated, OVF descriptor pendingpublic static final Status COPYING
VAppTemplate
Upload initiated, copying contentspublic static final Status PENDING_CONTENTS
VAppTemplate
Upload initiated, disk contents pendingpublic static final Status QUARANTINED
VAppTemplate
Upload has been quarantinedpublic static final Status QUARANTINE_EXPIRED
VAppTemplate
Upload quarantine period has expiredpublic static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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 value()
public static Status fromValue(int v)
Copyright © 2009-2012 jclouds. All Rights Reserved.