public enum OvhType extends Enum<OvhType>
| Enum Constant and Description |
|---|
mariadb |
mongodb |
mysql |
postgresql |
redis |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static OvhType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OvhType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OvhType mariadb
public static final OvhType mongodb
public static final OvhType mysql
public static final OvhType postgresql
public static final OvhType redis
public static OvhType[] values()
for (OvhType c : OvhType.values()) System.out.println(c);
public static OvhType 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.