Package fr.ird.observe.dto.data
Class TripMapPoint
- java.lang.Object
-
- fr.ird.observe.dto.data.TripMapPoint
-
- All Implemented Interfaces:
Serializable
public class TripMapPoint extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected floatlatitudeprotected floatlongitudestatic StringPROPERTY_LATITUDEstatic StringPROPERTY_LONGITUDEstatic StringPROPERTY_TIMEstatic StringPROPERTY_TYPEprotected Datetimeprotected TripMapPointTypetype
-
Constructor Summary
Constructors Constructor Description TripMapPoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetLatitude()floatgetLongitude()DategetTime()TripMapPointTypegetType()voidsetLatitude(float latitude)voidsetLongitude(float longitude)voidsetTime(Date time)voidsetType(TripMapPointType type)
-
-
-
Field Detail
-
PROPERTY_TIME
public static final String PROPERTY_TIME
- See Also:
- Constant Field Values
-
PROPERTY_LATITUDE
public static final String PROPERTY_LATITUDE
- See Also:
- Constant Field Values
-
PROPERTY_LONGITUDE
public static final String PROPERTY_LONGITUDE
- See Also:
- Constant Field Values
-
PROPERTY_TYPE
public static final String PROPERTY_TYPE
- See Also:
- Constant Field Values
-
time
protected Date time
-
latitude
protected float latitude
-
longitude
protected float longitude
-
type
protected TripMapPointType type
-
-
Method Detail
-
getTime
public Date getTime()
-
setTime
public void setTime(Date time)
-
getLatitude
public float getLatitude()
-
setLatitude
public void setLatitude(float latitude)
-
getLongitude
public float getLongitude()
-
setLongitude
public void setLongitude(float longitude)
-
getType
public TripMapPointType getType()
-
setType
public void setType(TripMapPointType type)
-
-