public class

LaneNode

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

Class Overview

Represents a position node of the lane.

Summary

Fields
public List<RegSpeedLimit> speedLimits
Public Constructors
LaneNode()
Public Methods
boolean equals(Object o)
long getLatitude()
Returns the latitude.
long getLongitude()
Returns the longitude.
List<RegSpeedLimit> getSpeedLimits()
Returns the list of speed limits.
Integer getWidthOffset()
Returns the width offset of this lane which is a value added to the current lane width and from this node onwards.
int hashCode()
void setLatitude(long latitude)
Sets the latitude
void setLongitude(long longitude)
Sets the longitude
void setSpeedLimits(List<RegSpeedLimit> speedLimits)
Sets the list of speed limits.
void setWidthOffset(Integer widthOffset)
Sets the width offset of this lane which is a value added to the current lane width and from this node onwards.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public List<RegSpeedLimit> speedLimits

Public Constructors

public LaneNode ()

Public Methods

public boolean equals (Object o)

public long getLatitude ()

Returns the latitude.

Returns
  • latitude in 0.1 microdegrees

public long getLongitude ()

Returns the longitude.

Returns
  • longitude in 0.1 microdegrees

public List<RegSpeedLimit> getSpeedLimits ()

Returns the list of speed limits.

Returns
  • list of speed limits

public Integer getWidthOffset ()

Returns the width offset of this lane which is a value added to the current lane width and from this node onwards.

Returns
  • width offset in centimeters

public int hashCode ()

public void setLatitude (long latitude)

Sets the latitude

Parameters
latitude latitude in 0.1 microdegrees

public void setLongitude (long longitude)

Sets the longitude

Parameters
longitude longitude in 0.1 microdegrees

public void setSpeedLimits (List<RegSpeedLimit> speedLimits)

Sets the list of speed limits.

Parameters
speedLimits list of speed limits

public void setWidthOffset (Integer widthOffset)

Sets the width offset of this lane which is a value added to the current lane width and from this node onwards.

Parameters
widthOffset width offset in centimeters

public String toString ()