Package apple.callkit

Class CXCallDirectoryExtensionContext

    • Constructor Detail

      • CXCallDirectoryExtensionContext

        protected CXCallDirectoryExtensionContext​(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()
      • addBlockingEntryWithNextSequentialPhoneNumber

        public void addBlockingEntryWithNextSequentialPhoneNumber​(long phoneNumber)
      • addIdentificationEntryWithNextSequentialPhoneNumberLabel

        public void addIdentificationEntryWithNextSequentialPhoneNumberLabel​(long phoneNumber,
                                                                             java.lang.String label)
      • isIncremental

        public boolean isIncremental()
        Whether the request should provide incremental data. If this is called at the beginning of the request (before any entries have been added or removed) and the result is YES, then the request must only provide an "incremental" set of entries, i.e. only add or remove entries relative to the last time data was loaded for the extension. Otherwise, if this method is not called OR is called and returns NO, then the request must provide a "complete" set of entries, adding the full list of entries from scratch (and removing none), regardless of whether data has ever been successfully loaded in the past.
      • removeAllBlockingEntries

        public void removeAllBlockingEntries()
        Remove all currently-stored blocking entries. May only be used when `-isIncremental` returns YES, indicating that the request should provide incremental entries and thus may use this API to remove all previously-added blocking entries.
      • removeAllIdentificationEntries

        public void removeAllIdentificationEntries()
        Remove all currently-stored identification entries. May only be used when `-isIncremental` returns YES, indicating that the request should provide incremental entries and thus may use this API to remove all previously-added identification entries.
      • removeBlockingEntryWithPhoneNumber

        public void removeBlockingEntryWithPhoneNumber​(long phoneNumber)
        Remove blocking entry with the specified phone number. May only be used when `-isIncremental` returns YES, indicating that the request should provide incremental entries and thus may use this API to remove a previously-added blocking entry.
        Parameters:
        phoneNumber - The blocking entry phone number to remove.
      • removeIdentificationEntryWithPhoneNumber

        public void removeIdentificationEntryWithPhoneNumber​(long phoneNumber)
        Remove identification entry with the specified phone number. May only be used when `-isIncremental` returns YES, indicating that the request should provide incremental entries and thus may use this API to remove a previously-added identification entry. Removes all identification entries with the specified phone number, even if multiple identification entries with different labels are present for a single phone number.
        Parameters:
        phoneNumber - The identification entry phone number to remove.