v2x-client
| java.lang.Object | |
| ↳ | com.commsignia.v2x.client.model.MovementEvent |
Represents a single movement event.
| 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
| |||||||||||
Creates a new instance.
Returns the confidence of likely time.
Returns the likely time.
Returns the expected longer end time.
Returns the expected shortest end time.
Returns a rough estimate of time when this phase may next occur again.
Returns when this phase has started.
Sets the confidence of likely time.
| confidence | confidence of likely time. |
|---|
Sets the event state/phase.
| eventState | event state |
|---|
Sets the likely time.
| likelyTime | likely time |
|---|
Sets the expected longer end time.
| maxEndTime | expected longer end time |
|---|
Sets the expected shortest end time.
| minEndTime | expected shortest end time. |
|---|
Sets a rough estimate of time when this phase may next occur again.
| nextTime | a rough estimate of time when this phase may next occur again |
|---|
Sets when this phase has started.
| startTime | when this phase has started |
|---|