public class

MovementEvent

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

Class Overview

Represents a single movement event.

Summary

Public Constructors
MovementEvent()
Creates a new instance.
Public Methods
boolean equals(Object o)
Long getConfidence()
Returns the confidence of likely time.
MovementPhase getEventState()
Returns the event state/phase.
Long getLikelyTime()
Returns the likely time.
Long getMaxEndTime()
Returns the expected longer end time.
Long getMinEndTime()
Returns the expected shortest end time.
Long getNextTime()
Returns a rough estimate of time when this phase may next occur again.
Long getStartTime()
Returns when this phase has started.
int hashCode()
void setConfidence(Long confidence)
Sets the confidence of likely time.
void setEventState(MovementPhase eventState)
Sets the event state/phase.
void setLikelyTime(Long likelyTime)
Sets the likely time.
void setMaxEndTime(Long maxEndTime)
Sets the expected longer end time.
void setMinEndTime(Long minEndTime)
Sets the expected shortest end time.
void setNextTime(Long nextTime)
Sets a rough estimate of time when this phase may next occur again.
void setStartTime(Long startTime)
Sets when this phase has started.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public MovementEvent ()

Creates a new instance.

Public Methods

public boolean equals (Object o)

public Long getConfidence ()

Returns the confidence of likely time.

Returns
  • confidence of likely time

public MovementPhase getEventState ()

Returns the event state/phase.

Returns
  • event state

public Long getLikelyTime ()

Returns the likely time.

Returns
  • likely time.

public Long getMaxEndTime ()

Returns the expected longer end time.

Returns
  • expected longer end time.

public Long getMinEndTime ()

Returns the expected shortest end time.

Returns
  • expected shortest end time.

public Long getNextTime ()

Returns a rough estimate of time when this phase may next occur again.

Returns
  • a rough estimate of time when this phase may next occur again

public Long getStartTime ()

Returns when this phase has started.

Returns
  • when this phase has started.

public int hashCode ()

public void setConfidence (Long confidence)

Sets the confidence of likely time.

Parameters
confidence confidence of likely time.

public void setEventState (MovementPhase eventState)

Sets the event state/phase.

Parameters
eventState event state

public void setLikelyTime (Long likelyTime)

Sets the likely time.

Parameters
likelyTime likely time

public void setMaxEndTime (Long maxEndTime)

Sets the expected longer end time.

Parameters
maxEndTime expected longer end time

public void setMinEndTime (Long minEndTime)

Sets the expected shortest end time.

Parameters
minEndTime expected shortest end time.

public void setNextTime (Long nextTime)

Sets a rough estimate of time when this phase may next occur again.

Parameters
nextTime a rough estimate of time when this phase may next occur again

public void setStartTime (Long startTime)

Sets when this phase has started.

Parameters
startTime when this phase has started

public String toString ()