public class

BSMSafetyEventFlags

extends Object
java.lang.Object
   ↳ com.commsignia.v2x.client.model.bsm.BSMSafetyEventFlags

Class Overview

Event flags in Safety Extension (part II) of BSM

Summary

Public Constructors
BSMSafetyEventFlags()
Create new instance.
Public Methods
boolean equals(Object o)
int hashCode()
boolean isABSActivated()
Returns the status of the ABS activated flag.
boolean isAirBagDeployment()
Returns the value of the air bag deployment flag.
boolean isDisabledVehicle()
Returns the value of the disabled vehicle flag.
boolean isEmergencyResponse()
Retruns the value of the emergency response flag.
boolean isFlatTire()
Returns the value of the flat tire flag.
boolean isHardBraking()
Returns the value of the hard braking flag.
boolean isHazardLights()
Returns the status of the hazard lights flag.
boolean isHazardousMaterials()
Returns the value of the hazardous materials flag.
boolean isLightsChanged()
Returns the value of the lights changed flag.
boolean isStabilityControlActivated()
Returns true if stability control flag is set.
boolean isStopLineViolation()
Returns the status of the stop line violation flag.
boolean isTractionControlLoss()
Returns the value of the traction control loss flag.
boolean isWipersChanged()
Returns the value of the wipers changed flag.
void setABSActivated(boolean absActivated)
Sets the value of the ABS activated flag.
void setAirBagDeployment(boolean airBagDeployment)
Sets the value of the air bag deployment flag.
void setDisabledVehicle(boolean disabledVehicle)
Sets the value of the disabled vehicle flag.
void setEmergencyResponse(boolean emergencyResponse)
Sets the value of the emergency response flag.
void setFlatTire(boolean flatTire)
Sets the value of the flat tire flag.
void setHardBraking(boolean hardBraking)
Sets the value of the hard barking flag.
void setHazardLights(boolean hazardLights)
Sets the status of the hazard lights flag.
void setHazardousMaterials(boolean hazardousMaterials)
Sets the value of the hazardous materials flag.
void setLightsChanged(boolean lightsChanged)
Sets the value of the lights changed flag.
void setStabilityControlActivated(boolean stabilityControlActivated)
Sets the value of the stability control activated flag.
void setStopLineViolation(boolean stopLineViolation)
Sets the value of the stop line violation flag.
void setTractionControlLoss(boolean tractionControlLoss)
Sets the value of the traction control loss flag.
void setWipersChanged(boolean wipersChanged)
Sets the valuie of the wipers changed flag.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public BSMSafetyEventFlags ()

Create new instance.

Public Methods

public boolean equals (Object o)

public int hashCode ()

public boolean isABSActivated ()

Returns the status of the ABS activated flag.

Returns
  • true if the ABS activated flag is set, false otherwise

public boolean isAirBagDeployment ()

Returns the value of the air bag deployment flag.

Returns
  • true if the air bag deployment flag is set, false otherwise

public boolean isDisabledVehicle ()

Returns the value of the disabled vehicle flag.

Returns
  • true if the disabled vehicle flag is set, false otherwise

public boolean isEmergencyResponse ()

Retruns the value of the emergency response flag.

Returns
  • true if the emergency response flag is set, false otherwise

public boolean isFlatTire ()

Returns the value of the flat tire flag.

Returns
  • true if the flat tire flag is set, false otherwise

public boolean isHardBraking ()

Returns the value of the hard braking flag.

Returns
  • true if the hard braking flag is set, false otherwise

public boolean isHazardLights ()

Returns the status of the hazard lights flag.

Returns
  • true if the hazard lights flag is set, false otherwise

public boolean isHazardousMaterials ()

Returns the value of the hazardous materials flag.

Returns
  • true if the hazardous materials flag is set, false otherwise

public boolean isLightsChanged ()

Returns the value of the lights changed flag.

Returns
  • true if the lights changed flag is set, false otherwise

public boolean isStabilityControlActivated ()

Returns true if stability control flag is set.

Returns
  • true if the stability control flag is set, false otherwise

public boolean isStopLineViolation ()

Returns the status of the stop line violation flag.

Returns
  • true if the stop line violation flag is set, false otherwise

public boolean isTractionControlLoss ()

Returns the value of the traction control loss flag.

Returns
  • true if traction control loss flag is set, false otherwise

public boolean isWipersChanged ()

Returns the value of the wipers changed flag.

Returns
  • true if the wipers changed flag is set, false otherwise

public void setABSActivated (boolean absActivated)

Sets the value of the ABS activated flag.

Parameters
absActivated new value for the ABS activated flag

public void setAirBagDeployment (boolean airBagDeployment)

Sets the value of the air bag deployment flag.

Parameters
airBagDeployment new value for the air bag deployment flag

public void setDisabledVehicle (boolean disabledVehicle)

Sets the value of the disabled vehicle flag.

Parameters
disabledVehicle new value for the disabled vehicle flag

public void setEmergencyResponse (boolean emergencyResponse)

Sets the value of the emergency response flag.

Parameters
emergencyResponse new value for the emergency response flag

public void setFlatTire (boolean flatTire)

Sets the value of the flat tire flag.

Parameters
flatTire new value of the flat tire flag

public void setHardBraking (boolean hardBraking)

Sets the value of the hard barking flag.

Parameters
hardBraking new value for the hard braking flag

public void setHazardLights (boolean hazardLights)

Sets the status of the hazard lights flag.

Parameters
hazardLights new value for the hazard light flag

public void setHazardousMaterials (boolean hazardousMaterials)

Sets the value of the hazardous materials flag.

Parameters
hazardousMaterials new value for the hazardous materials flag

public void setLightsChanged (boolean lightsChanged)

Sets the value of the lights changed flag.

Parameters
lightsChanged new value for the lights changed flag

public void setStabilityControlActivated (boolean stabilityControlActivated)

Sets the value of the stability control activated flag.

Parameters
stabilityControlActivated new value for the stability control activated flag

public void setStopLineViolation (boolean stopLineViolation)

Sets the value of the stop line violation flag.

Parameters
stopLineViolation new value for the stop line violation flag

public void setTractionControlLoss (boolean tractionControlLoss)

Sets the value of the traction control loss flag.

Parameters
tractionControlLoss new value for the traction control loss flag

public void setWipersChanged (boolean wipersChanged)

Sets the valuie of the wipers changed flag.

Parameters
wipersChanged new value for the wipers changed flag

public String toString ()