protected static interface CalendarContract.CalendarAlertsColumns
Modifier and Type | Field and Description |
---|---|
static String |
ALARM_TIME
The alarm time of the event, in UTC.
|
static String |
BEGIN
The start time of the event, in UTC.
|
static String |
CREATION_TIME
The creation time of this database entry, in UTC.
|
static String |
DEFAULT_SORT_ORDER
The default sort order for this alerts queries
|
static String |
END
The end time of the event, in UTC.
|
static String |
EVENT_ID
The event that the alert belongs to.
|
static String |
MINUTES
The number of minutes that this alarm precedes the start time.
|
static String |
NOTIFY_TIME
The time that the notification was created by the Calendar app,
in UTC.
|
static String |
RECEIVED_TIME
The time that the alarm broadcast was received by the Calendar app,
in UTC.
|
static String |
STATE
The state of this alert.
|
static int |
STATE_DISMISSED
Once the user has dismissed the notification the alert's state should
be set to dismissed so it is not fired again.
|
static int |
STATE_FIRED
After a notification for an alert has been created it should be
updated to fired.
|
static int |
STATE_SCHEDULED
An alert begins in this state when it is first created.
|
static final String EVENT_ID
Type: INTEGER (foreign key to the Events table)
static final String BEGIN
Type: INTEGER (long; millis since epoch)
static final String END
Type: INTEGER (long; millis since epoch)
static final String ALARM_TIME
Type: INTEGER (long; millis since epoch)
static final String CREATION_TIME
Type: INTEGER (long; millis since epoch)
static final String RECEIVED_TIME
Type: INTEGER (long; millis since epoch)
static final String NOTIFY_TIME
Type: INTEGER (long; millis since epoch)
static final String STATE
STATE_SCHEDULED
, then
when the alarm goes off, it changes to STATE_FIRED
, and then when
the user dismisses the alarm it changes to STATE_DISMISSED
. Column
name.
Type: INTEGER
static final int STATE_SCHEDULED
static final int STATE_FIRED
static final int STATE_DISMISSED
static final String MINUTES
Type: INTEGER
static final String DEFAULT_SORT_ORDER