DBFILESSearchMatchTypeTag

Objective-C

enum DBFILESSearchMatchTypeTag : NSInteger {}

Swift

@frozen enum DBFILESSearchMatchTypeTag : Int, @unchecked Sendable

The DBFILESSearchMatchTypeTag enum type represents the possible tag states with which the DBFILESSearchMatchType union can exist.

  • This item was matched on its file or folder name.

    Declaration

    Objective-C

    DBFILESSearchMatchTypeFilename

    Swift

    case filename = 0
  • This item was matched based on its file contents.

    Declaration

    Objective-C

    DBFILESSearchMatchTypeContent

    Swift

    case content = 1
  • This item was matched based on both its contents and its file name.

    Declaration

    Objective-C

    DBFILESSearchMatchTypeBoth

    Swift

    case both = 2