public enum OvhStatus extends Enum<OvhStatus>
| Enum Constant and Description |
|---|
created |
creating |
deleting |
reopening |
suspended |
suspending |
| 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 created
public static final OvhStatus creating
public static final OvhStatus deleting
public static final OvhStatus reopening
public static final OvhStatus suspended
public static final OvhStatus suspending
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.