AI-generated Key Takeaways
-
Barcode.CalendarEvent
objects represent calendar events extracted from QR codes. -
They provide access to event details like description, start/end times, location, organizer, status, and summary.
-
All event details are accessed through "get" methods, which return
null
if the information is not available in the QR code.
A calendar event extracted from QRCode.
Public Method Summary
String |
getDescription()
Gets the description of the calendar event.
|
Barcode.CalendarDateTime |
getEnd()
Gets the end date time of the calendar event.
|
String |
getLocation()
Gets the location of the calendar event.
|
String |
getOrganizer()
Gets the organizer of the calendar event.
|
Barcode.CalendarDateTime |
getStart()
Gets the start date time of the calendar event.
|
String |
getStatus()
Gets the status of the calendar event.
|
String |
getSummary()
Gets the summary of the calendar event.
|
Inherited Method Summary
Public Methods
public String getDescription ()
Gets the description of the calendar event.
Returns null
if not available.
public Barcode.CalendarDateTime getEnd ()
Gets the end date time of the calendar event.
Returns null
if not available.
public String getLocation ()
Gets the location of the calendar event.
Returns null
if not available.
public String getOrganizer ()
Gets the organizer of the calendar event.
Returns null
if not available.
public Barcode.CalendarDateTime getStart ()
Gets the start date time of the calendar event.
Returns null
if not available.
public String getStatus ()
Gets the status of the calendar event.
Returns null
if not available.
public String getSummary ()
Gets the summary of the calendar event.
Returns null
if not available.