package com.wytehat.btlogger; public class LocationPoint { /** The item linked to the phone at this position. */ public static final String EVENT_CONNECTED = "connected"; /** The link to the phone dropped at this position. */ public static final String EVENT_DISCONNECTED = "disconnected"; public double latitude; public double longitude; public float accuracy; public long timestamp; /** * Why this point was recorded: EVENT_CONNECTED, EVENT_DISCONNECTED, or * null for a plain position refresh while the link state was unchanged. * Null for every row logged before the column existed. */ public String event; }