Class CKQueryOperation

    • Constructor Detail

      • CKQueryOperation

        protected CKQueryOperation​(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()
      • desiredKeys

        public NSArray<java.lang.String> desiredKeys()
        Declares which user-defined keys should be fetched and added to the resulting CKRecords. If nil, declares the entire record should be downloaded. If set to an empty array, declares that no user fields should be downloaded. Defaults to @c nil.
      • init

        public CKQueryOperation init()
        Queries invoked within a sharedCloudDatabase must specify a zoneID. Cross-zone queries are not supported in a sharedCloudDatabase
        Overrides:
        init in class CKDatabaseOperation
      • queryCompletionBlock

        public CKQueryOperation.Block_queryCompletionBlock_ret queryCompletionBlock()
        This block is called when the operation completes. The @code -[NSOperation completionBlock] @endcode will also be called if both are set. Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • recordFetchedBlock

        public CKQueryOperation.Block_recordFetchedBlock_ret recordFetchedBlock()
        This block will be called once for every record that is returned as a result of the query. The callbacks will happen in the order that the results were sorted in. Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • resultsLimit

        public long resultsLimit()
        Defaults to @c CKQueryOperationMaximumResults. Queries may return fewer than @c resultsLimit in some scenarios: - There are legitimately fewer than @c resultsLimit number of records matching the query (and visible to the current user). - During the process of querying and fetching the results, some records were deleted, or became un-readable by the current user. When determining if there are more records to fetch, always check for the presence of a cursor in @c queryCompletionBlock.
      • setDesiredKeys

        public void setDesiredKeys​(NSArray<java.lang.String> value)
        Declares which user-defined keys should be fetched and added to the resulting CKRecords. If nil, declares the entire record should be downloaded. If set to an empty array, declares that no user fields should be downloaded. Defaults to @c nil.
      • setQuery

        public void setQuery​(CKQuery value)
      • setQueryCompletionBlock

        public void setQueryCompletionBlock​(CKQueryOperation.Block_setQueryCompletionBlock value)
        This block is called when the operation completes. The @code -[NSOperation completionBlock] @endcode will also be called if both are set. Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • setRecordFetchedBlock

        public void setRecordFetchedBlock​(CKQueryOperation.Block_setRecordFetchedBlock value)
        This block will be called once for every record that is returned as a result of the query. The callbacks will happen in the order that the results were sorted in. Each @c CKOperation instance has a private serial queue. This queue is used for all callback block invocations.
      • setResultsLimit

        public void setResultsLimit​(long value)
        Defaults to @c CKQueryOperationMaximumResults. Queries may return fewer than @c resultsLimit in some scenarios: - There are legitimately fewer than @c resultsLimit number of records matching the query (and visible to the current user). - During the process of querying and fetching the results, some records were deleted, or became un-readable by the current user. When determining if there are more records to fetch, always check for the presence of a cursor in @c queryCompletionBlock.
      • setZoneID

        public void setZoneID​(CKRecordZoneID value)
        Indicates which record zone to query. For query operations constructed using a cursor, this property is ignored and instead will be evaluated in the record zone in which the cursor was originally created.
      • zoneID

        public CKRecordZoneID zoneID()
        Indicates which record zone to query. For query operations constructed using a cursor, this property is ignored and instead will be evaluated in the record zone in which the cursor was originally created.