public enum TPMS extends Enum<TPMS>
| Enum Constant and Description |
|---|
LOW
TPMS is reporting a low tire pressure for the tire.
|
NOT_TRAINED
TPMS reports the tire is not trained.
|
SENSOR_FAULT
The sensor of the tire does not function.
|
SYSTEM_ACTIVE
TPMS is active and the tire pressure is monitored.
|
SYSTEM_FAULT
TPMS does not function.
|
TRAIN
TPMS is reporting that the tire must be trained.
|
TRAINING_COMPLETE
TPMS reports the training for the tire is completed.
|
UNKNOWN
If set the status of the tire is not known.
|
| Modifier and Type | Method and Description |
|---|---|
static TPMS |
valueForString(String value) |
static TPMS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPMS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPMS UNKNOWN
public static final TPMS SYSTEM_FAULT
public static final TPMS SENSOR_FAULT
public static final TPMS LOW
public static final TPMS SYSTEM_ACTIVE
public static final TPMS TRAIN
public static final TPMS TRAINING_COMPLETE
public static final TPMS NOT_TRAINED
public static TPMS[] values()
for (TPMS c : TPMS.values()) System.out.println(c);
public static TPMS 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