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