public class

ExteriorLights

extends Object
java.lang.Object
   ↳ com.commsignia.v2x.client.model.ExteriorLights

Class Overview

Represents the exterior lights' status in a CAM message.

Summary

Public Constructors
ExteriorLights()
Creates a new instance.
Public Methods
boolean equals(Object o)
int hashCode()
boolean isDaytimeRunningLightsOn()
Returns status of the daytime running lights.
boolean isFogLightOn()
Returns the status of the fog lights.
boolean isHighBeamHeadlightsOn()
Returns the status of the high beam headlights.
boolean isLeftTurnSignalOn()
Returns the status of the left turn signal.
boolean isLowBeamHeadlightsOn()
Returns the status of the low beam headlights.
boolean isParkingLightsOn()
Returns the status of the parking lights.
boolean isReverseLightOn()
Returns the status of the reverse light.
boolean isRightTurnSignalOn()
Returns the status of right turn signal.
ExteriorLights setDaytimeRunningLightsOn(boolean daytimeRunningLightsOn)
Sets the status info of the daytime running lights.
ExteriorLights setFogLightOn(boolean fogLightOn)
Sets the status of the fog lights.
ExteriorLights setHighBeamHeadlightsOn(boolean highBeamHeadlightsOn)
Sets the status info of the high beam headlights.
ExteriorLights setLeftTurnSignalOn(boolean leftTurnSignalOn)
Sets the status info of the lefty turn signal.
ExteriorLights setLowBeamHeadlightsOn(boolean lowBeamHeadlightsOn)
Sets the status of the low beam headlights.
ExteriorLights setParkingLightsOn(boolean parkingLightsOn)
Sets the status of the parking lights.
ExteriorLights setReverseLightOn(boolean reverseLightOn)
Sets the status info of the reverse light.
ExteriorLights setRightTurnSignalOn(boolean rightTurnSignalOn)
Sets the status info of the right turn signal.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ExteriorLights ()

Creates a new instance.

Public Methods

public boolean equals (Object o)

public int hashCode ()

public boolean isDaytimeRunningLightsOn ()

Returns status of the daytime running lights.

Returns
  • true if the daytime running lights are on

public boolean isFogLightOn ()

Returns the status of the fog lights.

Returns
  • true if the fog light is on

public boolean isHighBeamHeadlightsOn ()

Returns the status of the high beam headlights.

Returns
  • true if the high beam headlights are on

public boolean isLeftTurnSignalOn ()

Returns the status of the left turn signal.

Returns
  • true if the left turn signal is on

public boolean isLowBeamHeadlightsOn ()

Returns the status of the low beam headlights.

Returns
  • true if the low beam headlights are on

public boolean isParkingLightsOn ()

Returns the status of the parking lights.

Returns
  • true if the parking lights are on

public boolean isReverseLightOn ()

Returns the status of the reverse light.

Returns
  • true if the reverse light is on

public boolean isRightTurnSignalOn ()

Returns the status of right turn signal.

Returns
  • true if the right turn signal is on

public ExteriorLights setDaytimeRunningLightsOn (boolean daytimeRunningLightsOn)

Sets the status info of the daytime running lights.

Parameters
daytimeRunningLightsOn true if the daytime running lights are on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setFogLightOn (boolean fogLightOn)

Sets the status of the fog lights.

Parameters
fogLightOn true if the fog light is on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setHighBeamHeadlightsOn (boolean highBeamHeadlightsOn)

Sets the status info of the high beam headlights.

Parameters
highBeamHeadlightsOn true if the high beam headlights are on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setLeftTurnSignalOn (boolean leftTurnSignalOn)

Sets the status info of the lefty turn signal.

Parameters
leftTurnSignalOn true if the left turn signal is on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setLowBeamHeadlightsOn (boolean lowBeamHeadlightsOn)

Sets the status of the low beam headlights.

Parameters
lowBeamHeadlightsOn true if the low beam headlights are on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setParkingLightsOn (boolean parkingLightsOn)

Sets the status of the parking lights.

Parameters
parkingLightsOn true if the parking lights are on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setReverseLightOn (boolean reverseLightOn)

Sets the status info of the reverse light.

Parameters
reverseLightOn true if th reverse light is on
Returns
  • same ExteriorLights object this method was invoked on

public ExteriorLights setRightTurnSignalOn (boolean rightTurnSignalOn)

Sets the status info of the right turn signal.

Parameters
rightTurnSignalOn true if the right turn signal is on
Returns
  • same ExteriorLights object this method was invoked on

public String toString ()