public enum OvhStatus extends Enum<OvhStatus>
| Enum Constant and Description |
|---|
available |
testing |
unavailable |
| 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 available
public static final OvhStatus testing
public static final OvhStatus unavailable
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.