public enum OvhStatusEnum extends Enum<OvhStatusEnum>
| Enum Constant and Description |
|---|
cancelled |
doing |
done |
error |
init |
todo |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static OvhStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OvhStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OvhStatusEnum cancelled
public static final OvhStatusEnum doing
public static final OvhStatusEnum done
public static final OvhStatusEnum error
public static final OvhStatusEnum init
public static final OvhStatusEnum todo
public static OvhStatusEnum[] values()
for (OvhStatusEnum c : OvhStatusEnum.values()) System.out.println(c);
public static OvhStatusEnum 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 toString()
toString in class Enum<OvhStatusEnum>Copyright © 2017. All rights reserved.