Class EKCalendarItem

    • Constructor Detail

      • EKCalendarItem

        protected EKCalendarItem​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • version_static

        public static long version_static()
      • URL

        public NSURL URL()
      • UUID

        @Deprecated
        public java.lang.String UUID()
        Deprecated.
        [@property] UUID This is now deprecated; use calendarItemIdentifier instead.
      • addAlarm

        public void addAlarm​(EKAlarm alarm)
        addAlarm: Adds an alarm to this item. This method add an alarm to an item. Be warned that some calendars can only allow a certain maximum number of alarms. When this item is saved, it will truncate any extra alarms from the array.
      • alarms

        public NSArray<? extends EKAlarm> alarms()
        An array of EKAlarm objects
      • calendar

        public EKCalendar calendar()
        [@property] calendar The calendar that this calendar item belongs to. This will be nil for new calendar items until you set it.
      • calendarItemExternalIdentifier

        public java.lang.String calendarItemExternalIdentifier()
        [@property] calendarItemExternalIdentifier A server-provided identifier for this calendar item This identifier, provided by the server, allows you to reference the same event or reminder across multiple devices. For calendars stored locally on the device, including the birthday calendar, it simply passes through to calendarItemIdentifier. This identifier is unique as of creation for every calendar item. However, there are some cases where duplicate copies of a calendar item can exist in the same database, including: - A calendar item was imported from an ICS file into multiple calendars - An event was created in a calendar shared with the user and the user was also invited to the event - The user is a delegate of a calendar that also has this event - A subscribed calendar was added to multiple accounts In such cases, you should choose between calendar items based on other factors, such as the calendar or source. This identifier is the same for all occurrences of a recurring event. If you wish to differentiate between occurrences, you may want to use the start date. This may be nil for new calendar items that do not yet belong to a calendar. In addition, there are two caveats for Exchange-based calendars: - This identifier will be different between EventKit on iOS versus OS X - This identifier will be different between devices for EKReminders
      • calendarItemIdentifier

        public java.lang.String calendarItemIdentifier()
        [@property] calendarItemIdentifier A unique identifier for a calendar item. Item identifiers are not sync-proof in that a full sync will lose this identifier, so you should always have a back up plan for dealing with a reminder that is no longer fetchable by this property, e.g. by title, etc. Use [EKEventStore calendarItemWithIdentifier:] to look up the item by this value.
      • creationDate

        public NSDate creationDate()
      • hasAlarms

        public boolean hasAlarms()
        These exist to do simple checks for the presence of data without loading said data. While at present only hasRecurrenceRules has a fast path, it is a good idea to use these if you only need to know the data exists anyway since at some point they will all be a simple check.
      • hasAttendees

        public boolean hasAttendees()
      • hasNotes

        public boolean hasNotes()
      • hasRecurrenceRules

        public boolean hasRecurrenceRules()
      • lastModifiedDate

        public NSDate lastModifiedDate()
      • location

        public java.lang.String location()
      • notes

        public java.lang.String notes()
      • recurrenceRules

        public NSArray<? extends EKRecurrenceRule> recurrenceRules()
        [@property] recurrenceRules An array of EKRecurrenceRules, or nil if none.
      • removeAlarm

        public void removeAlarm​(EKAlarm alarm)
        removeAlarm: Removes an alarm from this item.
      • removeRecurrenceRule

        public void removeRecurrenceRule​(EKRecurrenceRule rule)
      • setAlarms

        public void setAlarms​(NSArray<? extends EKAlarm> value)
        An array of EKAlarm objects
      • setCalendar

        public void setCalendar​(EKCalendar value)
        [@property] calendar The calendar that this calendar item belongs to. This will be nil for new calendar items until you set it.
      • setLocation

        public void setLocation​(java.lang.String value)
      • setNotes

        public void setNotes​(java.lang.String value)
      • setRecurrenceRules

        public void setRecurrenceRules​(NSArray<? extends EKRecurrenceRule> value)
        [@property] recurrenceRules An array of EKRecurrenceRules, or nil if none.
      • setTimeZone

        public void setTimeZone​(NSTimeZone value)
      • setTitle

        public void setTitle​(java.lang.String value)
        [@property] title The title of this calendar item. This will be nill for new calendar items until you set it.
      • setURL

        public void setURL​(NSURL value)
      • title

        public java.lang.String title()
        [@property] title The title of this calendar item. This will be nill for new calendar items until you set it.