public class

SpecialTransportType

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

Class Overview

Represents the type of a special transport vehicle.

Summary

Public Constructors
SpecialTransportType()
Creates a new instance.
Public Methods
boolean equals(Object o)
int hashCode()
boolean isExcessHeight()
Returns whether the vehicle's height is way above the average.
boolean isExcessLength()
Returns whether the vehicle's length is way above the average.
boolean isExcessWidth()
Returns whether the vehicle's width is way above the average.
boolean isHeavyLoad()
Returns whether the vehicle carries heavy load.
void setExcessHeight(boolean excessHeight)
Sets whether the vehicle's height is way above the average.
void setExcessLength(boolean excessLength)
Sets whether the vehicle's length is way above the average.
void setExcessWidth(boolean excessWidth)
Sets whether the vehicle's width is way above the average.
void setHeavyLoad(boolean heavyLoad)
Sets whether the vehicle carries heavy load.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SpecialTransportType ()

Creates a new instance.

Public Methods

public boolean equals (Object o)

public int hashCode ()

public boolean isExcessHeight ()

Returns whether the vehicle's height is way above the average.

Returns
  • whether the vehicle's length is way above the average.

public boolean isExcessLength ()

Returns whether the vehicle's length is way above the average.

Returns
  • whether the vehicle's length is way above the average.

public boolean isExcessWidth ()

Returns whether the vehicle's width is way above the average.

Returns
  • whether the vehicle's width is way above the average.

public boolean isHeavyLoad ()

Returns whether the vehicle carries heavy load.

Returns
  • whether the vehicle carries heavy load

public void setExcessHeight (boolean excessHeight)

Sets whether the vehicle's height is way above the average.

Parameters
excessHeight whether the vehicle's height is way above the average.

public void setExcessLength (boolean excessLength)

Sets whether the vehicle's length is way above the average.

Parameters
excessLength whether the vehicle's length is way above the average.

public void setExcessWidth (boolean excessWidth)

Sets whether the vehicle's width is way above the average.

Parameters
excessWidth whether the vehicle's width is way above the average.

public void setHeavyLoad (boolean heavyLoad)

Sets whether the vehicle carries heavy load.

Parameters
heavyLoad whether the vehicle carries heavy load.

public String toString ()