public static enum DriverEvent.Type extends Enum<DriverEvent.Type>
| Enum Constant and Description | 
|---|
DRIVER_ENHANCED
Signifies that the driver configuration has changed in an additive
 manner. 
 | 
DRIVER_REDUCED
Signifies that the driver configuration has been reduced in some way. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DriverEvent.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DriverEvent.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DriverEvent.Type DRIVER_ENHANCED
public static final DriverEvent.Type DRIVER_REDUCED
public static DriverEvent.Type[] values()
for (DriverEvent.Type c : DriverEvent.Type.values()) System.out.println(c);
public static DriverEvent.Type 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 null