public class

PositionFilter

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

Class Overview

Represents a position filter.

Summary

Public Constructors
PositionFilter()
Creates a new instance.
Public Methods
boolean equals(Object o)
long getLatitude()
Returns the latitude value of the position filter.
long getLongitude()
Returns the longitude value of the position filter.
long getSemiAxisA()
Returns the length of semi-axis A
long getSemiAxisB()
Sets the length of semi-axis B
ShapeType getShapeType()
Returns the shape type.
int hashCode()
void setLatitude(long latitude)
Sets the latitude value of the position filter.
void setLongitude(long longitude)
Sets the longitude value of the position filter.
void setSemiAxisA(long semiAxisA)
Sets the length of semi-axis A
void setSemiAxisB(long semiAxisB)
Sets the length of semi-axis B
void setShapeType(ShapeType shapeType)
Sets the shape type.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public PositionFilter ()

Creates a new instance.

Public Methods

public boolean equals (Object o)

public long getLatitude ()

Returns the latitude value of the position filter.

Returns
  • latitude in 0.1 microdegrees

public long getLongitude ()

Returns the longitude value of the position filter.

Returns
  • longitude in 0.1 microdegrees.

public long getSemiAxisA ()

Returns the length of semi-axis A

Returns
  • length of semi axis A

public long getSemiAxisB ()

Sets the length of semi-axis B

Returns
  • length of semi-axis B

public ShapeType getShapeType ()

Returns the shape type.

Returns
  • shape type

public int hashCode ()

public void setLatitude (long latitude)

Sets the latitude value of the position filter.

Parameters
latitude latitude in 0.1 microdegrees

public void setLongitude (long longitude)

Sets the longitude value of the position filter.

Parameters
longitude longitude in 0.1 microdegrees

public void setSemiAxisA (long semiAxisA)

Sets the length of semi-axis A

Parameters
semiAxisA length of semi axis-A

public void setSemiAxisB (long semiAxisB)

Sets the length of semi-axis B

Parameters
semiAxisB length of semi-axis B

public void setShapeType (ShapeType shapeType)

Sets the shape type.

Parameters
shapeType shape type

public String toString ()