Class ALAsset

    • Constructor Detail

      • ALAsset

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

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • alloc

        public static ALAsset alloc()
      • 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()
      • aspectRatioThumbnail

        @Deprecated
        public CGImageRef aspectRatioThumbnail()
        Deprecated.
        Returns a CGImage with an aspect ratio thumbnail of the asset. The size of the thumbnail is the appropriate size for the platform. The thumbnail will be in the correct orientation.
      • defaultRepresentation

        @Deprecated
        public ALAssetRepresentation defaultRepresentation()
        Deprecated.
        Returns an ALAssetRepresentation object for the default representation of the ALAsset
      • isEditable

        @Deprecated
        public boolean isEditable()
        Deprecated.
        Returns YES if the application is able to edit the asset. Returns NO if the application is not able to edit the asset. Applications are only allowed to edit assets that they originally wrote.
      • originalAsset

        @Deprecated
        public ALAsset originalAsset()
        Deprecated.
        Returns the original asset if the caller was saved as a modified version of an asset. Returns nil if the caller was not saved as a modified version of an asset.
      • representationForUTI

        @Deprecated
        public ALAssetRepresentation representationForUTI​(java.lang.String representationUTI)
        Deprecated.
        Returns an ALAssetRepresentation object for the given representation UTI. If the ALAsset does not support the representation, nil is returned.
      • setImageDataMetadataCompletionBlock

        @Deprecated
        public void setImageDataMetadataCompletionBlock​(NSData imageData,
                                                        NSDictionary<?,​?> metadata,
                                                        ALAsset.Block_setImageDataMetadataCompletionBlock completionBlock)
        Deprecated.
        Replaces the image data in the calling asset with the supplied image data. The caller should check the editable property of the asset to see if it is possible to replace the image data. If the application is able to edit the asset, the completion block will return the same assetURL as the calling asset, since a new asset is not being created. If the application is not able to edit the asset, the completion block will return a nil assetURL and an ALAssetsLibraryWriteFailedError.
      • setVideoAtPathCompletionBlock

        @Deprecated
        public void setVideoAtPathCompletionBlock​(NSURL videoPathURL,
                                                  ALAsset.Block_setVideoAtPathCompletionBlock completionBlock)
        Deprecated.
        Replaces the video data in the calling asset with the video at the specified path. The caller should check the editable property of the asset to see if it is possible to replace the video data. If the application is able to edit the asset, the completion block will return the same assetURL as the calling asset, since a new asset is not being created. If the application is not able to edit the asset (see the editable property on ALAsset), the completion block will return a nil assetURL and an ALAssetsLibraryWriteFailedError.
      • thumbnail

        @Deprecated
        public CGImageRef thumbnail()
        Deprecated.
        Returns a CGImage with a square thumbnail of the asset. The size of the thumbnail is the appropriate size for the platform. The thumbnail will be in the correct orientation.
      • valueForProperty

        @Deprecated
        public java.lang.Object valueForProperty​(java.lang.String property)
        Deprecated.
        Returns the value for a given property (as defined above). Calling it with an invalid property returns a ALErrorInvalidProperty error.
      • writeModifiedVideoAtPathToSavedPhotosAlbumCompletionBlock

        @Deprecated
        public void writeModifiedVideoAtPathToSavedPhotosAlbumCompletionBlock​(NSURL videoPathURL,
                                                                              ALAsset.Block_writeModifiedVideoAtPathToSavedPhotosAlbumCompletionBlock completionBlock)
        Deprecated.
        Saves the video at the specified path to the saved photos album as a new ALAsset that is considered a modified version of the calling ALAsset.