public enum OvhStatus extends Enum<OvhStatus>
| Enum Constant and Description |
|---|
creating |
deleting |
reopening |
resizing |
restarting |
running |
starting |
stopped |
stopping |
suspended |
suspending |
updating |
upgrading |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static OvhStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OvhStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OvhStatus creating
public static final OvhStatus deleting
public static final OvhStatus reopening
public static final OvhStatus resizing
public static final OvhStatus restarting
public static final OvhStatus running
public static final OvhStatus starting
public static final OvhStatus stopped
public static final OvhStatus stopping
public static final OvhStatus suspended
public static final OvhStatus suspending
public static final OvhStatus updating
public static final OvhStatus upgrading
public static OvhStatus[] values()
for (OvhStatus c : OvhStatus.values()) System.out.println(c);
public static OvhStatus 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 nullCopyright © 2017. All rights reserved.