public enum LightName extends Enum<LightName>
| Enum Constant and Description |
|---|
AMBIENT_LIGHTS |
BRAKE_LIGHTS
Include all brake lights: rear_left and rear_right.
|
EXTERIOR_ALL_LIGHTS
Include all exterior lights around the vehicle.
|
EXTERIOR_FRONT_LIGHTS
Include exterior lights located in front of the vehicle.
|
EXTERIOR_LEFT_LIGHTS
Include exterior lights located at the left side of the vehicle.
|
EXTERIOR_REAR_LIGHTS
Include exterior lights located at the back of the vehicle.
|
EXTERIOR_RIGHT_LIGHTS
Include exterior lights located at the right side of the vehicle.
|
FOG_LIGHTS
Include all fog lights: front_left, front_right, rear_left and rear_right.
|
FRONT_LEFT_DAYTIME_RUNNING_LIGHT |
FRONT_LEFT_FOG_LIGHT |
FRONT_LEFT_HIGH_BEAM |
FRONT_LEFT_LOW_BEAM |
FRONT_LEFT_PARKING_LIGHT |
FRONT_LEFT_TURN_LIGHT |
FRONT_RIGHT_DAYTIME_RUNNING_LIGHT |
FRONT_RIGHT_FOG_LIGHT |
FRONT_RIGHT_HIGH_BEAM |
FRONT_RIGHT_LOW_BEAM |
FRONT_RIGHT_PARKING_LIGHT |
FRONT_RIGHT_TURN_LIGHT |
HAZARD_LIGHTS
Include all hazard lights: front_left, front_right, rear_left and rear_right.
|
HIGH_BEAMS
Include all high beam lights: front_left and front_right.
|
LEFT_PUDDLE_LIGHTS
Puddle lamps illuminate the ground beside the door as the customer is opening or approaching the door.
|
LEFT_SPOT_LIGHTS
It is the spotlights mounted on the left side of a vehicle.
|
LEFT_TURN_LIGHTS
Include all left turn signal lights: front_left, rear_left, left_side and mirror_mounted.
|
LOW_BEAMS
Include all low beam lights: front_left and front_right.
|
OVERHEAD_LIGHTS |
PARKING_LIGHTS
Include all parking lights: front_left and front_right.
|
READING_LIGHTS |
REAR_CARGO_LIGHTS
Cargo lamps illuminate the cargo area.
|
REAR_LEFT_BRAKE_LIGHT |
REAR_LEFT_FOG_LIGHT |
REAR_LEFT_TAIL_LIGHT |
REAR_LEFT_TURN_LIGHT |
REAR_REGISTRATION_PLATE_LIGHT |
REAR_REVERSING_LIGHTS |
REAR_RIGHT_BRAKE_LIGHT |
REAR_RIGHT_FOG_LIGHT |
REAR_RIGHT_TAIL_LIGHT |
REAR_RIGHT_TURN_LIGHT |
REAR_TRAILER_LIGHTS
Trailer lights are lamps mounted on a trailer hitch.
|
REAR_TRUCK_BED_LIGHTS
Truck bed lamps light up the bed of the truck.
|
RIGHT_PUDDLE_LIGHTS
Puddle lamps illuminate the ground beside the door as the customer is opening or approaching the door.
|
RIGHT_SPOT_LIGHTS
It is the spotlights mounted on the right side of a vehicle.
|
RIGHT_TURN_LIGHTS
Include all right turn signal lights: front_right, rear_right, right_side and mirror_mounted.
|
RUNNING_LIGHTS
Include all daytime running lights: front_left and front_right.
|
SIDE_MARKER_LIGHTS |
TRUNK_LIGHTS |
| Modifier and Type | Method and Description |
|---|---|
static LightName |
valueForString(String value) |
static LightName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LightName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LightName FRONT_LEFT_HIGH_BEAM
public static final LightName FRONT_RIGHT_HIGH_BEAM
public static final LightName FRONT_LEFT_LOW_BEAM
public static final LightName FRONT_RIGHT_LOW_BEAM
public static final LightName FRONT_LEFT_PARKING_LIGHT
public static final LightName FRONT_RIGHT_PARKING_LIGHT
public static final LightName FRONT_LEFT_FOG_LIGHT
public static final LightName FRONT_RIGHT_FOG_LIGHT
public static final LightName FRONT_LEFT_DAYTIME_RUNNING_LIGHT
public static final LightName FRONT_RIGHT_DAYTIME_RUNNING_LIGHT
public static final LightName FRONT_LEFT_TURN_LIGHT
public static final LightName FRONT_RIGHT_TURN_LIGHT
public static final LightName REAR_LEFT_FOG_LIGHT
public static final LightName REAR_RIGHT_FOG_LIGHT
public static final LightName REAR_LEFT_TAIL_LIGHT
public static final LightName REAR_RIGHT_TAIL_LIGHT
public static final LightName REAR_LEFT_BRAKE_LIGHT
public static final LightName REAR_RIGHT_BRAKE_LIGHT
public static final LightName REAR_LEFT_TURN_LIGHT
public static final LightName REAR_RIGHT_TURN_LIGHT
public static final LightName REAR_REGISTRATION_PLATE_LIGHT
public static final LightName HIGH_BEAMS
public static final LightName LOW_BEAMS
public static final LightName FOG_LIGHTS
public static final LightName RUNNING_LIGHTS
public static final LightName PARKING_LIGHTS
public static final LightName BRAKE_LIGHTS
public static final LightName REAR_REVERSING_LIGHTS
public static final LightName SIDE_MARKER_LIGHTS
public static final LightName LEFT_TURN_LIGHTS
public static final LightName RIGHT_TURN_LIGHTS
public static final LightName HAZARD_LIGHTS
public static final LightName REAR_CARGO_LIGHTS
public static final LightName REAR_TRUCK_BED_LIGHTS
public static final LightName REAR_TRAILER_LIGHTS
public static final LightName LEFT_SPOT_LIGHTS
public static final LightName RIGHT_SPOT_LIGHTS
public static final LightName LEFT_PUDDLE_LIGHTS
public static final LightName RIGHT_PUDDLE_LIGHTS
public static final LightName AMBIENT_LIGHTS
public static final LightName OVERHEAD_LIGHTS
public static final LightName READING_LIGHTS
public static final LightName TRUNK_LIGHTS
public static final LightName EXTERIOR_FRONT_LIGHTS
public static final LightName EXTERIOR_REAR_LIGHTS
public static final LightName EXTERIOR_LEFT_LIGHTS
public static final LightName EXTERIOR_RIGHT_LIGHTS
public static final LightName EXTERIOR_ALL_LIGHTS
public static LightName[] values()
for (LightName c : LightName.values()) System.out.println(c);
public static LightName 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