DBFILESThumbnailErrorTag

Objective-C

enum DBFILESThumbnailErrorTag : NSInteger {}

Swift

@frozen enum DBFILESThumbnailErrorTag : Int, @unchecked Sendable

The DBFILESThumbnailErrorTag enum type represents the possible tag states with which the DBFILESThumbnailError union can exist.

  • An error occurs when downloading metadata for the image.

    Declaration

    Objective-C

    DBFILESThumbnailErrorPath

    Swift

    case path = 0
  • The file extension doesn’t allow conversion to a thumbnail.

    Declaration

    Objective-C

    DBFILESThumbnailErrorUnsupportedExtension

    Swift

    case unsupportedExtension = 1
  • The image cannot be converted to a thumbnail.

    Declaration

    Objective-C

    DBFILESThumbnailErrorUnsupportedImage

    Swift

    case unsupportedImage = 2
  • An error occurs during thumbnail conversion.

    Declaration

    Objective-C

    DBFILESThumbnailErrorConversionError

    Swift

    case conversionError = 3