RemindersColumns
protected interface RemindersColumns
android.provider.CalendarContract.RemindersColumns |
Summary
Constants | |
---|---|
static String |
The event the reminder belongs to. |
static String |
The alarm method, as set on the server. |
static Int | |
static Int | |
static Int | |
static Int | |
static Int | |
static String |
The minutes prior to the event that the alarm should ring. |
static Int |
Passing this as a minutes value will use the default reminder minutes. |
Constants
EVENT_ID
static val EVENT_ID: String
The event the reminder belongs to. Column name.
Type: INTEGER (foreign key to the Events table)
Value: "event_id"
METHOD
static val METHOD: String
The alarm method, as set on the server. METHOD_DEFAULT
, METHOD_ALERT
, METHOD_EMAIL
, METHOD_SMS
and METHOD_ALARM
are possible values; the device will only process METHOD_DEFAULT
and METHOD_ALERT
reminders (the other types are simply stored so we can send the same reminder info back to the server when we make changes).
Value: "method"
MINUTES
static val MINUTES: String
The minutes prior to the event that the alarm should ring. -1 specifies that we should use the default value for the system. Column name.
Type: INTEGER
Value: "minutes"
MINUTES_DEFAULT
static val MINUTES_DEFAULT: Int
Passing this as a minutes value will use the default reminder minutes.
Value: -1