public enum MeterFailReason extends Enum<MeterFailReason>
| Enum Constant and Description | 
|---|
BAD_BAND
Bad band. 
 | 
BAD_BAND_VALUE
Bad value value. 
 | 
BAD_BURST
Bad burst size value. 
 | 
BAD_RATE
Bad rate value. 
 | 
EXISTING_METER
A meter with the same identifier already exists. 
 | 
INVALID_METER
Invalid meter definition. 
 | 
OUT_OF_BANDS
The device does not support any more bands for this meter. 
 | 
OUT_OF_METERS
The device does not support any more meters. 
 | 
TIMEOUT
The operation for this meter installation timed out. 
 | 
UNKNOWN
The meter that was attempted to be modified is unknown. 
 | 
UNKNOWN_COMMAND
Unknown command. 
 | 
UNKNOWN_DEVICE
The target device is unknown. 
 | 
UNKNOWN_FLAGS
Unknown flags. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MeterFailReason | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static MeterFailReason[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MeterFailReason EXISTING_METER
public static final MeterFailReason OUT_OF_METERS
public static final MeterFailReason OUT_OF_BANDS
public static final MeterFailReason UNKNOWN
public static final MeterFailReason TIMEOUT
public static final MeterFailReason INVALID_METER
public static final MeterFailReason UNKNOWN_DEVICE
public static final MeterFailReason UNKNOWN_COMMAND
public static final MeterFailReason UNKNOWN_FLAGS
public static final MeterFailReason BAD_RATE
public static final MeterFailReason BAD_BURST
public static final MeterFailReason BAD_BAND
public static final MeterFailReason BAD_BAND_VALUE
public static MeterFailReason[] values()
for (MeterFailReason c : MeterFailReason.values()) System.out.println(c);
public static MeterFailReason 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