corespotlight

package
v0.12.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 25, 2026 License: MIT Imports: 9 Imported by: 0

Documentation

Rendered for darwin/amd64

Overview

Package corespotlight provides purego-based Go bindings for the macOS CoreSpotlight framework.

Apple documentation: https://developer.apple.com/documentation/corespotlight

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CSIndexErrorDomain

func CSIndexErrorDomain() uintptr

func CSMailboxArchive

func CSMailboxArchive() uintptr

func CSMailboxDrafts

func CSMailboxDrafts() uintptr

func CSMailboxInbox

func CSMailboxInbox() uintptr

func CSMailboxJunk

func CSMailboxJunk() uintptr

func CSMailboxSent

func CSMailboxSent() uintptr

func CSMailboxTrash

func CSMailboxTrash() uintptr

func CSQueryContinuationActionType

func CSQueryContinuationActionType() uintptr

func CSSearchQueryErrorDomain

func CSSearchQueryErrorDomain() uintptr

func CSSearchQueryString

func CSSearchQueryString() uintptr

func CSSearchableIndexIsIndexingAvailable

func CSSearchableIndexIsIndexingAvailable() bool

Returns a Boolean value that indicates whether indexing is available on the current device.

func CSSearchableItemActionType

func CSSearchableItemActionType() uintptr

func CSSearchableItemActivityIdentifier

func CSSearchableItemActivityIdentifier() uintptr

func CSSuggestionHighlightAttributeName

func CSSuggestionHighlightAttributeName() uintptr

func CSUserQueryPrepare

func CSUserQueryPrepare()

Performs one-time tasks that prepare Spotlight to search for content in all search indexes.

func CSUserQueryPrepareProtectionClasses

func CSUserQueryPrepareProtectionClasses(protectionClasses *foundation.NSArray[*foundation.NSString])

Performs one-time tasks that prepare Spotlight to search for content in one or more protected search indexes.

func CoreSpotlightVersionNumber

func CoreSpotlightVersionNumber() float64

func CoreSpotlightVersionString

func CoreSpotlightVersionString() []unsafe.Pointer

Types

type Acl_entry_id_t

type Acl_entry_id_t int64
const (
	ACL_FIRST_ENTRY Acl_entry_id_t = 0
	ACL_NEXT_ENTRY  Acl_entry_id_t = -1
	ACL_LAST_ENTRY  Acl_entry_id_t = -2
)

func (Acl_entry_id_t) String

func (e Acl_entry_id_t) String() string

type Acl_flag_t

type Acl_flag_t int64
const (
	ACL_FLAG_DEFER_INHERIT      Acl_flag_t = 1
	ACL_FLAG_NO_INHERIT         Acl_flag_t = 131072
	ACL_ENTRY_INHERITED         Acl_flag_t = 16
	ACL_ENTRY_FILE_INHERIT      Acl_flag_t = 32
	ACL_ENTRY_DIRECTORY_INHERIT Acl_flag_t = 64
	ACL_ENTRY_LIMIT_INHERIT     Acl_flag_t = 128
	ACL_ENTRY_ONLY_INHERIT      Acl_flag_t = 256
)

func (Acl_flag_t) String

func (e Acl_flag_t) String() string

type Acl_perm_t

type Acl_perm_t int64
const (
	ACL_READ_DATA           Acl_perm_t = 2
	ACL_LIST_DIRECTORY      Acl_perm_t = 2
	ACL_WRITE_DATA          Acl_perm_t = 4
	ACL_ADD_FILE            Acl_perm_t = 4
	ACL_EXECUTE             Acl_perm_t = 8
	ACL_SEARCH              Acl_perm_t = 8
	ACL_DELETE              Acl_perm_t = 16
	ACL_APPEND_DATA         Acl_perm_t = 32
	ACL_ADD_SUBDIRECTORY    Acl_perm_t = 32
	ACL_DELETE_CHILD        Acl_perm_t = 64
	ACL_READ_ATTRIBUTES     Acl_perm_t = 128
	ACL_WRITE_ATTRIBUTES    Acl_perm_t = 256
	ACL_READ_EXTATTRIBUTES  Acl_perm_t = 512
	ACL_WRITE_EXTATTRIBUTES Acl_perm_t = 1024
	ACL_READ_SECURITY       Acl_perm_t = 2048
	ACL_WRITE_SECURITY      Acl_perm_t = 4096
	ACL_CHANGE_OWNER        Acl_perm_t = 8192
	ACL_SYNCHRONIZE         Acl_perm_t = 1048576
)

func (Acl_perm_t) String

func (e Acl_perm_t) String() string

type Acl_tag_t

type Acl_tag_t int64
const (
	ACL_UNDEFINED_TAG  Acl_tag_t = 0
	ACL_EXTENDED_ALLOW Acl_tag_t = 1
	ACL_EXTENDED_DENY  Acl_tag_t = 2
)

func (Acl_tag_t) String

func (e Acl_tag_t) String() string

type Acl_type_t

type Acl_type_t int64
const (
	ACL_TYPE_EXTENDED Acl_type_t = 256
	ACL_TYPE_ACCESS   Acl_type_t = 0
	ACL_TYPE_DEFAULT  Acl_type_t = 1
	ACL_TYPE_AFS      Acl_type_t = 2
	ACL_TYPE_CODA     Acl_type_t = 3
	ACL_TYPE_NTFS     Acl_type_t = 4
	ACL_TYPE_NWFS     Acl_type_t = 5
)

func (Acl_type_t) String

func (e Acl_type_t) String() string

type CSCustomAttributeKey

type CSCustomAttributeKey struct {
	foundation.NSObject
}

A key associated with a custom attribute for a searchable item.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cscustomattributekey

func CSCustomAttributeKeyFromID

func CSCustomAttributeKeyFromID(id objc.ID) *CSCustomAttributeKey

func (*CSCustomAttributeKey) InitWithKeyName

func (o *CSCustomAttributeKey) InitWithKeyName(keyName *foundation.NSString) *CSCustomAttributeKey

Returns a new custom attribute key with the specified name.

func (*CSCustomAttributeKey) InitWithKeyNameSearchableSearchableByDefaultUniqueMultiValued

func (o *CSCustomAttributeKey) InitWithKeyNameSearchableSearchableByDefaultUniqueMultiValued(keyName *foundation.NSString, searchable bool, searchableByDefault bool, unique bool, multiValued bool) *CSCustomAttributeKey

Returns a new custom attribute key with the specified name and properties.

func (*CSCustomAttributeKey) IsMultiValued

func (o *CSCustomAttributeKey) IsMultiValued() bool

func (*CSCustomAttributeKey) IsSearchable

func (o *CSCustomAttributeKey) IsSearchable() bool

func (*CSCustomAttributeKey) IsSearchableByDefault

func (o *CSCustomAttributeKey) IsSearchableByDefault() bool

func (*CSCustomAttributeKey) IsUnique

func (o *CSCustomAttributeKey) IsUnique() bool

func (*CSCustomAttributeKey) KeyName

type CSImportExtension

type CSImportExtension struct {
	foundation.NSObject
}

An object that provides searchable attributes for file types that the app supports.

Apple documentation: https://developer.apple.com/documentation/corespotlight/csimportextension

func CSImportExtensionFromID

func CSImportExtensionFromID(id objc.ID) *CSImportExtension

func (*CSImportExtension) UpdateAttributesForFileAtURLError

func (o *CSImportExtension) UpdateAttributesForFileAtURLError(attributes *CSSearchableItemAttributeSet, contentURL *foundation.NSURL) (bool, error)

Provides searchable attributes for a file at the specified URL.

type CSIndexErrorCode

type CSIndexErrorCode int64

Error codes that describe indexing-specific errors.

const (
	CSIndexErrorCodeUnknownError            CSIndexErrorCode = -1
	CSIndexErrorCodeIndexUnavailableError   CSIndexErrorCode = -1000
	CSIndexErrorCodeInvalidItemError        CSIndexErrorCode = -1001
	CSIndexErrorCodeInvalidClientStateError CSIndexErrorCode = -1002
	CSIndexErrorCodeRemoteConnectionError   CSIndexErrorCode = -1003
	CSIndexErrorCodeQuotaExceeded           CSIndexErrorCode = -1004
	CSIndexErrorCodeIndexingUnsupported     CSIndexErrorCode = -1005
	CSIndexErrorCodeMismatchedClientState   CSIndexErrorCode = -1006
)

func (CSIndexErrorCode) String

func (e CSIndexErrorCode) String() string

type CSIndexExtensionRequestHandler

type CSIndexExtensionRequestHandler struct {
	foundation.NSObject
}

An interface that implements an index-maintenance app extension.

Apple documentation: https://developer.apple.com/documentation/corespotlight/csindexextensionrequesthandler

func CSIndexExtensionRequestHandlerFromID

func CSIndexExtensionRequestHandlerFromID(id objc.ID) *CSIndexExtensionRequestHandler

type CSLocalizedString

type CSLocalizedString struct {
	foundation.NSString
}

An object that displays localized text in search results related to your app.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cslocalizedstring

func CSLocalizedStringFromID

func CSLocalizedStringFromID(id objc.ID) *CSLocalizedString

func (*CSLocalizedString) InitWithLocalizedStrings

func (o *CSLocalizedString) InitWithLocalizedStrings(localizedStrings *foundation.NSDictionary[objc.ID, objc.ID]) *CSLocalizedString

Initializes a CSLocalizedString object with the specified dictionary of localized strings.

func (*CSLocalizedString) LocalizedString

func (o *CSLocalizedString) LocalizedString() *foundation.NSString

Returns the localized string for the current language.

type CSPerson

type CSPerson struct {
	foundation.NSObject
}

An object that represents a person in the context of search results.

Apple documentation: https://developer.apple.com/documentation/corespotlight/csperson

func CSPersonFromID

func CSPersonFromID(id objc.ID) *CSPerson

func (*CSPerson) ContactIdentifier

func (o *CSPerson) ContactIdentifier() *foundation.NSString

func (*CSPerson) DisplayName

func (o *CSPerson) DisplayName() *foundation.NSString

func (*CSPerson) HandleIdentifier

func (o *CSPerson) HandleIdentifier() *foundation.NSString

func (*CSPerson) Handles

func (o *CSPerson) Handles() *foundation.NSArray[*foundation.NSString]

func (*CSPerson) InitWithDisplayNameHandlesHandleIdentifier

func (o *CSPerson) InitWithDisplayNameHandlesHandleIdentifier(displayName *foundation.NSString, handles *foundation.NSArray[*foundation.NSString], handleIdentifier *foundation.NSString) *CSPerson

Returns a new CSPerson object initialized with the specified display name and contact attributes.

func (*CSPerson) SetContactIdentifier

func (o *CSPerson) SetContactIdentifier(contactIdentifier *foundation.NSString)

type CSSearchQuery

type CSSearchQuery struct {
	foundation.NSObject
}

A type you use to programmatically search the indexed app content.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cssearchquery

func CSSearchQueryFromID

func CSSearchQueryFromID(id objc.ID) *CSSearchQuery

func (*CSSearchQuery) Cancel

func (o *CSSearchQuery) Cancel()

Cancels the current query operation.

func (*CSSearchQuery) CompletionHandler

func (o *CSSearchQuery) CompletionHandler() objc.Block

func (*CSSearchQuery) FoundItemCount

func (o *CSSearchQuery) FoundItemCount() uint

func (*CSSearchQuery) FoundItemsHandler

func (o *CSSearchQuery) FoundItemsHandler() objc.Block

func (*CSSearchQuery) InitWithQueryStringAttributes

func (o *CSSearchQuery) InitWithQueryStringAttributes(queryString *foundation.NSString, attributes *foundation.NSArray[*foundation.NSString]) *CSSearchQuery

Initializes and returns a query object with the specified query string and item attributes. Deprecated: since macOS 13.0.

func (*CSSearchQuery) InitWithQueryStringQueryContext

func (o *CSSearchQuery) InitWithQueryStringQueryContext(queryString *foundation.NSString, queryContext *CSSearchQueryContext) *CSSearchQuery

Initializes and returns a query object with the specified query string and query context.

func (*CSSearchQuery) IsCancelled deprecated

func (o *CSSearchQuery) IsCancelled() bool

Deprecated: since macOS 13.0.

func (*CSSearchQuery) ProtectionClasses

func (o *CSSearchQuery) ProtectionClasses() *foundation.NSArray[*foundation.NSString]

func (*CSSearchQuery) SetCompletionHandler

func (o *CSSearchQuery) SetCompletionHandler(completionHandler func(unsafe.Pointer))

func (*CSSearchQuery) SetFoundItemsHandler

func (o *CSSearchQuery) SetFoundItemsHandler(foundItemsHandler func(*foundation.NSArray[*CSSearchableItem]))

func (*CSSearchQuery) SetProtectionClasses

func (o *CSSearchQuery) SetProtectionClasses(protectionClasses *foundation.NSArray[*foundation.NSString])

func (*CSSearchQuery) Start

func (o *CSSearchQuery) Start()

Starts searching the index for items that match the current query string and parameters.

type CSSearchQueryContext

type CSSearchQueryContext struct {
	foundation.NSObject
}

The behavior configuration to use for a search query.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cssearchquerycontext

func CSSearchQueryContextFromID

func CSSearchQueryContextFromID(id objc.ID) *CSSearchQueryContext

func (*CSSearchQueryContext) FetchAttributes

func (o *CSSearchQueryContext) FetchAttributes() *foundation.NSArray[*foundation.NSString]

func (*CSSearchQueryContext) FilterQueries

func (*CSSearchQueryContext) KeyboardLanguage

func (o *CSSearchQueryContext) KeyboardLanguage() *foundation.NSString

func (*CSSearchQueryContext) SetFetchAttributes

func (o *CSSearchQueryContext) SetFetchAttributes(fetchAttributes *foundation.NSArray[*foundation.NSString])

func (*CSSearchQueryContext) SetFilterQueries

func (o *CSSearchQueryContext) SetFilterQueries(filterQueries *foundation.NSArray[*foundation.NSString])

func (*CSSearchQueryContext) SetKeyboardLanguage

func (o *CSSearchQueryContext) SetKeyboardLanguage(keyboardLanguage *foundation.NSString)

func (*CSSearchQueryContext) SetSourceOptions

func (o *CSSearchQueryContext) SetSourceOptions(sourceOptions CSSearchQuerySourceOptions)

func (*CSSearchQueryContext) SourceOptions

type CSSearchQueryErrorCode

type CSSearchQueryErrorCode int64

Error codes that describe reasons a query might fail.

const (
	CSSearchQueryErrorCodeUnknown          CSSearchQueryErrorCode = -2000
	CSSearchQueryErrorCodeIndexUnreachable CSSearchQueryErrorCode = -2001
	CSSearchQueryErrorCodeInvalidQuery     CSSearchQueryErrorCode = -2002
	CSSearchQueryErrorCodeCancelled        CSSearchQueryErrorCode = -2003
)

func (CSSearchQueryErrorCode) String

func (e CSSearchQueryErrorCode) String() string

type CSSearchQuerySourceOptions

type CSSearchQuerySourceOptions uint64

The query source options to allow or deny Mail messages in the search.

const (
	// The query uses the default search option that excludes Mail messages.
	CSSearchQuerySourceOptionDefault   CSSearchQuerySourceOptions = 0
	CSSearchQuerySourceOptionAllowMail CSSearchQuerySourceOptions = 1
)

func (CSSearchQuerySourceOptions) String

type CSSearchableIndex

type CSSearchableIndex struct {
	foundation.NSObject
}

An on-device index for your app’s searchable content.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cssearchableindex

func CSSearchableIndexDefaultSearchableIndex

func CSSearchableIndexDefaultSearchableIndex() *CSSearchableIndex

Returns the default on-device index.

func CSSearchableIndexFromID

func CSSearchableIndexFromID(id objc.ID) *CSSearchableIndex

func (*CSSearchableIndex) BeginIndexBatch

func (o *CSSearchableIndex) BeginIndexBatch()

Begins a batch of updates to an index.

func (*CSSearchableIndex) DeleteAllSearchableItemsWithCompletionHandler

func (o *CSSearchableIndex) DeleteAllSearchableItemsWithCompletionHandler(completionHandler func(unsafe.Pointer))

Deletes all searchable items from the index.

func (*CSSearchableIndex) DeleteSearchableItemsWithDomainIdentifiersCompletionHandler

func (o *CSSearchableIndex) DeleteSearchableItemsWithDomainIdentifiersCompletionHandler(domainIdentifiers *foundation.NSArray[*foundation.NSString], completionHandler func(unsafe.Pointer))

Removes from the index all searchable items associated with the specified domain.

func (*CSSearchableIndex) DeleteSearchableItemsWithIdentifiersCompletionHandler

func (o *CSSearchableIndex) DeleteSearchableItemsWithIdentifiersCompletionHandler(identifiers *foundation.NSArray[*foundation.NSString], completionHandler func(unsafe.Pointer))

Removes from the index all items with the specified identifiers.

func (*CSSearchableIndex) EndIndexBatchWithClientStateCompletionHandler

func (o *CSSearchableIndex) EndIndexBatchWithClientStateCompletionHandler(clientState *foundation.NSData, completionHandler func(unsafe.Pointer))

Ends a batch of index updates and stores the specified state information.

func (*CSSearchableIndex) EndIndexBatchWithExpectedClientStateNewClientStateCompletionHandler

func (o *CSSearchableIndex) EndIndexBatchWithExpectedClientStateNewClientStateCompletionHandler(expectedClientState *foundation.NSData, newClientState *foundation.NSData, completionHandler func(unsafe.Pointer))

Ends a batch of index updates and stores the specified state information.

func (*CSSearchableIndex) FetchDataForBundleIdentifierItemIdentifierContentTypeCompletionHandler

func (o *CSSearchableIndex) FetchDataForBundleIdentifierItemIdentifierContentTypeCompletionHandler(bundleIdentifier *foundation.NSString, itemIdentifier *foundation.NSString, contentType *uniformtypeidentifiers.UTType, completionHandler func(*foundation.NSData, unsafe.Pointer))

Fetches data from an external provider.

func (*CSSearchableIndex) FetchLastClientStateWithCompletionHandler

func (o *CSSearchableIndex) FetchLastClientStateWithCompletionHandler(completionHandler func(*foundation.NSData, unsafe.Pointer))

Fetches the app’s most recent client state information asynchronously.

func (*CSSearchableIndex) IndexDelegate

func (o *CSSearchableIndex) IndexDelegate() CSSearchableIndexDelegate

func (*CSSearchableIndex) IndexSearchableItemsCompletionHandler

func (o *CSSearchableIndex) IndexSearchableItemsCompletionHandler(items *foundation.NSArray[*CSSearchableItem], completionHandler func(unsafe.Pointer))

Adds or updates items in the index.

func (*CSSearchableIndex) InitWithName

func (o *CSSearchableIndex) InitWithName(name *foundation.NSString) *CSSearchableIndex

Returns an on-device index with the specified name.

func (*CSSearchableIndex) InitWithNameProtectionClass

func (o *CSSearchableIndex) InitWithNameProtectionClass(name *foundation.NSString, protectionClass *foundation.NSString) *CSSearchableIndex

Returns an on-device index with the specified name and data protection class.

func (*CSSearchableIndex) SetIndexDelegate

func (o *CSSearchableIndex) SetIndexDelegate(indexDelegate CSSearchableIndexDelegate)

type CSSearchableIndexDelegate

type CSSearchableIndexDelegate interface {
	SearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(searchableIndex *CSSearchableIndex, acknowledgementHandler func())
	SearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(searchableIndex *CSSearchableIndex, identifiers *foundation.NSArray[*foundation.NSString], acknowledgementHandler func())
}

CSSearchableIndexDelegate wraps the ObjC protocol CSSearchableIndexDelegate.

type CSSearchableItem

type CSSearchableItem struct {
	foundation.NSObject
}

The details of your app-specific content that someone might search for on their devices.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cssearchableitem

func CSSearchableItemFromID

func CSSearchableItemFromID(id objc.ID) *CSSearchableItem

func (*CSSearchableItem) AttributeSet

func (*CSSearchableItem) CompareByRank

Compares two items by rank and returns the result.

func (*CSSearchableItem) DomainIdentifier

func (o *CSSearchableItem) DomainIdentifier() *foundation.NSString

func (*CSSearchableItem) ExpirationDate

func (o *CSSearchableItem) ExpirationDate() *foundation.NSDate

func (*CSSearchableItem) InitWithUniqueIdentifierDomainIdentifierAttributeSet

func (o *CSSearchableItem) InitWithUniqueIdentifierDomainIdentifierAttributeSet(uniqueIdentifier *foundation.NSString, domainIdentifier *foundation.NSString, attributeSet *CSSearchableItemAttributeSet) *CSSearchableItem

Returns a searchable item associated with the specified identifier, domain identifier, and attribute set.

func (*CSSearchableItem) IsUpdate

func (o *CSSearchableItem) IsUpdate() bool

func (*CSSearchableItem) SetAttributeSet

func (o *CSSearchableItem) SetAttributeSet(attributeSet *CSSearchableItemAttributeSet)

func (*CSSearchableItem) SetDomainIdentifier

func (o *CSSearchableItem) SetDomainIdentifier(domainIdentifier *foundation.NSString)

func (*CSSearchableItem) SetExpirationDate

func (o *CSSearchableItem) SetExpirationDate(expirationDate *foundation.NSDate)

func (*CSSearchableItem) SetIsUpdate

func (o *CSSearchableItem) SetIsUpdate(isUpdate bool)

func (*CSSearchableItem) SetUniqueIdentifier

func (o *CSSearchableItem) SetUniqueIdentifier(uniqueIdentifier *foundation.NSString)

func (*CSSearchableItem) SetUpdateListenerOptions

func (o *CSSearchableItem) SetUpdateListenerOptions(updateListenerOptions CSSearchableItemUpdateListenerOptions)

func (*CSSearchableItem) UniqueIdentifier

func (o *CSSearchableItem) UniqueIdentifier() *foundation.NSString

func (*CSSearchableItem) UpdateListenerOptions

func (o *CSSearchableItem) UpdateListenerOptions() CSSearchableItemUpdateListenerOptions

type CSSearchableItemAttributeSet

type CSSearchableItemAttributeSet struct {
	foundation.NSObject
}

The detailed metadata for a searchable item.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cssearchableitemattributeset

func CSSearchableItemAttributeSetFromID

func CSSearchableItemAttributeSetFromID(id objc.ID) *CSSearchableItemAttributeSet

func (*CSSearchableItemAttributeSet) AccountHandles

func (*CSSearchableItemAttributeSet) AccountIdentifier

func (o *CSSearchableItemAttributeSet) AccountIdentifier() *foundation.NSString

func (*CSSearchableItemAttributeSet) AcquisitionMake

func (o *CSSearchableItemAttributeSet) AcquisitionMake() *foundation.NSString

func (*CSSearchableItemAttributeSet) AcquisitionModel

func (o *CSSearchableItemAttributeSet) AcquisitionModel() *foundation.NSString

func (*CSSearchableItemAttributeSet) AddedDate

func (*CSSearchableItemAttributeSet) AdditionalRecipients

func (o *CSSearchableItemAttributeSet) AdditionalRecipients() *foundation.NSArray[*CSPerson]

func (*CSSearchableItemAttributeSet) Album

func (*CSSearchableItemAttributeSet) AllDay

func (*CSSearchableItemAttributeSet) AlternateNames

func (*CSSearchableItemAttributeSet) Altitude

func (*CSSearchableItemAttributeSet) Aperture

func (*CSSearchableItemAttributeSet) Artist

func (*CSSearchableItemAttributeSet) Audiences

func (*CSSearchableItemAttributeSet) AudioBitRate

func (*CSSearchableItemAttributeSet) AudioChannelCount

func (o *CSSearchableItemAttributeSet) AudioChannelCount() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) AudioEncodingApplication

func (o *CSSearchableItemAttributeSet) AudioEncodingApplication() *foundation.NSString

func (*CSSearchableItemAttributeSet) AudioSampleRate

func (o *CSSearchableItemAttributeSet) AudioSampleRate() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) AudioTrackNumber

func (o *CSSearchableItemAttributeSet) AudioTrackNumber() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) AuthorAddresses

func (*CSSearchableItemAttributeSet) AuthorEmailAddresses

func (o *CSSearchableItemAttributeSet) AuthorEmailAddresses() *foundation.NSArray[*foundation.NSString]

func (*CSSearchableItemAttributeSet) AuthorNames

func (*CSSearchableItemAttributeSet) Authors

func (*CSSearchableItemAttributeSet) BitsPerSample

func (o *CSSearchableItemAttributeSet) BitsPerSample() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) CameraOwner

func (*CSSearchableItemAttributeSet) City

func (*CSSearchableItemAttributeSet) Codecs

func (*CSSearchableItemAttributeSet) ColorSpace

func (*CSSearchableItemAttributeSet) Comment

func (*CSSearchableItemAttributeSet) CompletionDate

func (o *CSSearchableItemAttributeSet) CompletionDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) Composer

func (*CSSearchableItemAttributeSet) ContactKeywords

func (*CSSearchableItemAttributeSet) ContainerDisplayName

func (o *CSSearchableItemAttributeSet) ContainerDisplayName() *foundation.NSString

func (*CSSearchableItemAttributeSet) ContainerIdentifier

func (o *CSSearchableItemAttributeSet) ContainerIdentifier() *foundation.NSString

func (*CSSearchableItemAttributeSet) ContainerOrder

func (o *CSSearchableItemAttributeSet) ContainerOrder() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) ContainerTitle

func (o *CSSearchableItemAttributeSet) ContainerTitle() *foundation.NSString

func (*CSSearchableItemAttributeSet) ContentCreationDate

func (o *CSSearchableItemAttributeSet) ContentCreationDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) ContentDescription

func (o *CSSearchableItemAttributeSet) ContentDescription() *foundation.NSString

func (*CSSearchableItemAttributeSet) ContentModificationDate

func (o *CSSearchableItemAttributeSet) ContentModificationDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) ContentRating

func (o *CSSearchableItemAttributeSet) ContentRating() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) ContentSources

func (*CSSearchableItemAttributeSet) ContentType

func (*CSSearchableItemAttributeSet) ContentTypeTree

func (*CSSearchableItemAttributeSet) ContentURL

func (*CSSearchableItemAttributeSet) Contributors

func (*CSSearchableItemAttributeSet) Copyright

func (*CSSearchableItemAttributeSet) Country

func (*CSSearchableItemAttributeSet) Coverage

func (*CSSearchableItemAttributeSet) Creator

func (*CSSearchableItemAttributeSet) DarkThumbnailURL

func (o *CSSearchableItemAttributeSet) DarkThumbnailURL() *foundation.NSURL

func (*CSSearchableItemAttributeSet) DeliveryType

func (*CSSearchableItemAttributeSet) Director

func (*CSSearchableItemAttributeSet) DisplayName

func (*CSSearchableItemAttributeSet) DomainIdentifier

func (o *CSSearchableItemAttributeSet) DomainIdentifier() unsafe.Pointer

func (*CSSearchableItemAttributeSet) DownloadedDate

func (o *CSSearchableItemAttributeSet) DownloadedDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) DueDate

func (*CSSearchableItemAttributeSet) Duration

func (*CSSearchableItemAttributeSet) EXIFGPSVersion

func (o *CSSearchableItemAttributeSet) EXIFGPSVersion() *foundation.NSString

func (*CSSearchableItemAttributeSet) EXIFVersion

func (*CSSearchableItemAttributeSet) Editors

func (*CSSearchableItemAttributeSet) EmailAddresses

func (*CSSearchableItemAttributeSet) EmailHeaders

func (*CSSearchableItemAttributeSet) EncodingApplications

func (o *CSSearchableItemAttributeSet) EncodingApplications() *foundation.NSArray[*foundation.NSString]

func (*CSSearchableItemAttributeSet) EndDate

func (*CSSearchableItemAttributeSet) ExposureMode

func (*CSSearchableItemAttributeSet) ExposureProgram

func (o *CSSearchableItemAttributeSet) ExposureProgram() *foundation.NSString

func (*CSSearchableItemAttributeSet) ExposureTime

func (*CSSearchableItemAttributeSet) ExposureTimeString

func (o *CSSearchableItemAttributeSet) ExposureTimeString() *foundation.NSString

func (*CSSearchableItemAttributeSet) FNumber

func (*CSSearchableItemAttributeSet) FileSize

func (*CSSearchableItemAttributeSet) FocalLength

func (*CSSearchableItemAttributeSet) FontNames

func (*CSSearchableItemAttributeSet) FullyFormattedAddress

func (o *CSSearchableItemAttributeSet) FullyFormattedAddress() *foundation.NSString

func (*CSSearchableItemAttributeSet) GPSAreaInformation

func (o *CSSearchableItemAttributeSet) GPSAreaInformation() *foundation.NSString

func (*CSSearchableItemAttributeSet) GPSDOP

func (*CSSearchableItemAttributeSet) GPSDateStamp

func (o *CSSearchableItemAttributeSet) GPSDateStamp() *foundation.NSDate

func (*CSSearchableItemAttributeSet) GPSDestBearing

func (o *CSSearchableItemAttributeSet) GPSDestBearing() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) GPSDestDistance

func (o *CSSearchableItemAttributeSet) GPSDestDistance() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) GPSDestLatitude

func (o *CSSearchableItemAttributeSet) GPSDestLatitude() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) GPSDestLongitude

func (o *CSSearchableItemAttributeSet) GPSDestLongitude() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) GPSDifferental

func (o *CSSearchableItemAttributeSet) GPSDifferental() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) GPSMapDatum

func (*CSSearchableItemAttributeSet) GPSMeasureMode

func (o *CSSearchableItemAttributeSet) GPSMeasureMode() *foundation.NSString

func (*CSSearchableItemAttributeSet) GPSProcessingMethod

func (o *CSSearchableItemAttributeSet) GPSProcessingMethod() *foundation.NSString

func (*CSSearchableItemAttributeSet) GPSStatus

func (*CSSearchableItemAttributeSet) GPSTrack

func (*CSSearchableItemAttributeSet) Genre

func (*CSSearchableItemAttributeSet) HTMLContentData

func (o *CSSearchableItemAttributeSet) HTMLContentData() *foundation.NSData

func (*CSSearchableItemAttributeSet) HasAlphaChannel

func (o *CSSearchableItemAttributeSet) HasAlphaChannel() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) Headline

func (*CSSearchableItemAttributeSet) HiddenAdditionalRecipients

func (o *CSSearchableItemAttributeSet) HiddenAdditionalRecipients() *foundation.NSArray[*CSPerson]

func (*CSSearchableItemAttributeSet) ISOSpeed

func (*CSSearchableItemAttributeSet) Identifier

func (*CSSearchableItemAttributeSet) ImageDirection

func (o *CSSearchableItemAttributeSet) ImageDirection() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) ImportantDates

func (*CSSearchableItemAttributeSet) Information

func (*CSSearchableItemAttributeSet) InitWithContentType

Creates an attribute set for the specified content type.

func (*CSSearchableItemAttributeSet) InitWithItemContentType

func (o *CSSearchableItemAttributeSet) InitWithItemContentType(itemContentType *foundation.NSString) *CSSearchableItemAttributeSet

Creates an attribute set for the specified content type. Deprecated: Use initWithContentType instead

func (*CSSearchableItemAttributeSet) InstantMessageAddresses

func (o *CSSearchableItemAttributeSet) InstantMessageAddresses() *foundation.NSArray[*foundation.NSString]

func (*CSSearchableItemAttributeSet) Instructions

func (*CSSearchableItemAttributeSet) IsFlashOn

func (*CSSearchableItemAttributeSet) IsFocalLength35mm

func (o *CSSearchableItemAttributeSet) IsFocalLength35mm() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) IsGeneralMIDISequence

func (o *CSSearchableItemAttributeSet) IsGeneralMIDISequence() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) IsLikelyJunk

func (*CSSearchableItemAttributeSet) IsLocal

func (*CSSearchableItemAttributeSet) IsPriority

func (*CSSearchableItemAttributeSet) IsRedEyeOn

func (*CSSearchableItemAttributeSet) IsStreamable

func (*CSSearchableItemAttributeSet) IsUserCreated

func (o *CSSearchableItemAttributeSet) IsUserCreated() unsafe.Pointer

func (*CSSearchableItemAttributeSet) IsUserCurated

func (o *CSSearchableItemAttributeSet) IsUserCurated() unsafe.Pointer

func (*CSSearchableItemAttributeSet) IsUserOwned

func (o *CSSearchableItemAttributeSet) IsUserOwned() unsafe.Pointer

func (*CSSearchableItemAttributeSet) KeySignature

func (*CSSearchableItemAttributeSet) Keywords

func (*CSSearchableItemAttributeSet) Kind

func (*CSSearchableItemAttributeSet) Languages

func (*CSSearchableItemAttributeSet) LastUsedDate

func (o *CSSearchableItemAttributeSet) LastUsedDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) Latitude

func (*CSSearchableItemAttributeSet) LayerNames

func (*CSSearchableItemAttributeSet) LensModel

func (*CSSearchableItemAttributeSet) Longitude

func (*CSSearchableItemAttributeSet) Lyricist

func (*CSSearchableItemAttributeSet) MailboxIdentifiers

func (*CSSearchableItemAttributeSet) MaxAperture

func (*CSSearchableItemAttributeSet) MediaTypes

func (*CSSearchableItemAttributeSet) MetadataModificationDate

func (o *CSSearchableItemAttributeSet) MetadataModificationDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) MeteringMode

func (*CSSearchableItemAttributeSet) MusicalGenre

func (*CSSearchableItemAttributeSet) MusicalInstrumentCategory

func (o *CSSearchableItemAttributeSet) MusicalInstrumentCategory() *foundation.NSString

func (*CSSearchableItemAttributeSet) MusicalInstrumentName

func (o *CSSearchableItemAttributeSet) MusicalInstrumentName() *foundation.NSString

func (*CSSearchableItemAttributeSet) NamedLocation

func (o *CSSearchableItemAttributeSet) NamedLocation() *foundation.NSString

func (*CSSearchableItemAttributeSet) Organizations

func (*CSSearchableItemAttributeSet) Orientation

func (*CSSearchableItemAttributeSet) OriginalFormat

func (o *CSSearchableItemAttributeSet) OriginalFormat() *foundation.NSString

func (*CSSearchableItemAttributeSet) OriginalSource

func (o *CSSearchableItemAttributeSet) OriginalSource() *foundation.NSString

func (*CSSearchableItemAttributeSet) PageCount

func (*CSSearchableItemAttributeSet) PageHeight

func (*CSSearchableItemAttributeSet) PageWidth

func (*CSSearchableItemAttributeSet) Participants

func (*CSSearchableItemAttributeSet) Path

func (*CSSearchableItemAttributeSet) Performers

func (*CSSearchableItemAttributeSet) PhoneNumbers

func (*CSSearchableItemAttributeSet) PixelCount

func (*CSSearchableItemAttributeSet) PixelHeight

func (*CSSearchableItemAttributeSet) PixelWidth

func (*CSSearchableItemAttributeSet) PlayCount

func (*CSSearchableItemAttributeSet) PostalCode

func (*CSSearchableItemAttributeSet) PrimaryRecipients

func (o *CSSearchableItemAttributeSet) PrimaryRecipients() *foundation.NSArray[*CSPerson]

func (*CSSearchableItemAttributeSet) Producer

func (*CSSearchableItemAttributeSet) ProfileName

func (*CSSearchableItemAttributeSet) Projects

func (*CSSearchableItemAttributeSet) ProviderDataTypeIdentifiers

func (o *CSSearchableItemAttributeSet) ProviderDataTypeIdentifiers() unsafe.Pointer

func (*CSSearchableItemAttributeSet) ProviderFileTypeIdentifiers

func (o *CSSearchableItemAttributeSet) ProviderFileTypeIdentifiers() unsafe.Pointer

func (*CSSearchableItemAttributeSet) ProviderInPlaceFileTypeIdentifiers

func (o *CSSearchableItemAttributeSet) ProviderInPlaceFileTypeIdentifiers() unsafe.Pointer

func (*CSSearchableItemAttributeSet) Publishers

func (*CSSearchableItemAttributeSet) RankingHint

func (o *CSSearchableItemAttributeSet) RankingHint() unsafe.Pointer

func (*CSSearchableItemAttributeSet) Rating

func (*CSSearchableItemAttributeSet) RatingDescription

func (o *CSSearchableItemAttributeSet) RatingDescription() *foundation.NSString

func (*CSSearchableItemAttributeSet) RecipientAddresses

func (*CSSearchableItemAttributeSet) RecipientEmailAddresses

func (o *CSSearchableItemAttributeSet) RecipientEmailAddresses() *foundation.NSArray[*foundation.NSString]

func (*CSSearchableItemAttributeSet) RecipientNames

func (*CSSearchableItemAttributeSet) RecordingDate

func (o *CSSearchableItemAttributeSet) RecordingDate() *foundation.NSDate

func (*CSSearchableItemAttributeSet) RelatedUniqueIdentifier

func (o *CSSearchableItemAttributeSet) RelatedUniqueIdentifier() *foundation.NSString

func (*CSSearchableItemAttributeSet) ResolutionHeightDPI

func (o *CSSearchableItemAttributeSet) ResolutionHeightDPI() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) ResolutionWidthDPI

func (o *CSSearchableItemAttributeSet) ResolutionWidthDPI() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) Rights

func (*CSSearchableItemAttributeSet) Role

func (*CSSearchableItemAttributeSet) SecurityMethod

func (o *CSSearchableItemAttributeSet) SecurityMethod() *foundation.NSString

func (*CSSearchableItemAttributeSet) SetAccountHandles

func (o *CSSearchableItemAttributeSet) SetAccountHandles(accountHandles *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetAccountIdentifier

func (o *CSSearchableItemAttributeSet) SetAccountIdentifier(accountIdentifier *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetAcquisitionMake

func (o *CSSearchableItemAttributeSet) SetAcquisitionMake(acquisitionMake *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetAcquisitionModel

func (o *CSSearchableItemAttributeSet) SetAcquisitionModel(acquisitionModel *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetAddedDate

func (o *CSSearchableItemAttributeSet) SetAddedDate(addedDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetAdditionalRecipients

func (o *CSSearchableItemAttributeSet) SetAdditionalRecipients(additionalRecipients *foundation.NSArray[*CSPerson])

func (*CSSearchableItemAttributeSet) SetAlbum

func (o *CSSearchableItemAttributeSet) SetAlbum(album *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetAllDay

func (o *CSSearchableItemAttributeSet) SetAllDay(allDay *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetAlternateNames

func (o *CSSearchableItemAttributeSet) SetAlternateNames(alternateNames *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetAltitude

func (o *CSSearchableItemAttributeSet) SetAltitude(altitude *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetAperture

func (o *CSSearchableItemAttributeSet) SetAperture(aperture *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetArtist

func (o *CSSearchableItemAttributeSet) SetArtist(artist *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetAudiences

func (o *CSSearchableItemAttributeSet) SetAudiences(audiences *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetAudioBitRate

func (o *CSSearchableItemAttributeSet) SetAudioBitRate(audioBitRate *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetAudioChannelCount

func (o *CSSearchableItemAttributeSet) SetAudioChannelCount(audioChannelCount *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetAudioEncodingApplication

func (o *CSSearchableItemAttributeSet) SetAudioEncodingApplication(audioEncodingApplication *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetAudioSampleRate

func (o *CSSearchableItemAttributeSet) SetAudioSampleRate(audioSampleRate *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetAudioTrackNumber

func (o *CSSearchableItemAttributeSet) SetAudioTrackNumber(audioTrackNumber *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetAuthorAddresses

func (o *CSSearchableItemAttributeSet) SetAuthorAddresses(authorAddresses *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetAuthorEmailAddresses

func (o *CSSearchableItemAttributeSet) SetAuthorEmailAddresses(authorEmailAddresses *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetAuthorNames

func (o *CSSearchableItemAttributeSet) SetAuthorNames(authorNames *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetAuthors

func (o *CSSearchableItemAttributeSet) SetAuthors(authors *foundation.NSArray[*CSPerson])

func (*CSSearchableItemAttributeSet) SetBitsPerSample

func (o *CSSearchableItemAttributeSet) SetBitsPerSample(bitsPerSample *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetCameraOwner

func (o *CSSearchableItemAttributeSet) SetCameraOwner(cameraOwner *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetCity

func (*CSSearchableItemAttributeSet) SetCodecs

func (*CSSearchableItemAttributeSet) SetColorSpace

func (o *CSSearchableItemAttributeSet) SetColorSpace(colorSpace *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetComment

func (o *CSSearchableItemAttributeSet) SetComment(comment *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetCompletionDate

func (o *CSSearchableItemAttributeSet) SetCompletionDate(completionDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetComposer

func (o *CSSearchableItemAttributeSet) SetComposer(composer *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetContactKeywords

func (o *CSSearchableItemAttributeSet) SetContactKeywords(contactKeywords *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetContainerDisplayName

func (o *CSSearchableItemAttributeSet) SetContainerDisplayName(containerDisplayName *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetContainerIdentifier

func (o *CSSearchableItemAttributeSet) SetContainerIdentifier(containerIdentifier *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetContainerOrder

func (o *CSSearchableItemAttributeSet) SetContainerOrder(containerOrder *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetContainerTitle

func (o *CSSearchableItemAttributeSet) SetContainerTitle(containerTitle *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetContentCreationDate

func (o *CSSearchableItemAttributeSet) SetContentCreationDate(contentCreationDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetContentDescription

func (o *CSSearchableItemAttributeSet) SetContentDescription(contentDescription *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetContentModificationDate

func (o *CSSearchableItemAttributeSet) SetContentModificationDate(contentModificationDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetContentRating

func (o *CSSearchableItemAttributeSet) SetContentRating(contentRating *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetContentSources

func (o *CSSearchableItemAttributeSet) SetContentSources(contentSources *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetContentType

func (o *CSSearchableItemAttributeSet) SetContentType(contentType *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetContentTypeTree

func (o *CSSearchableItemAttributeSet) SetContentTypeTree(contentTypeTree *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetContentURL

func (o *CSSearchableItemAttributeSet) SetContentURL(contentURL *foundation.NSURL)

func (*CSSearchableItemAttributeSet) SetContributors

func (o *CSSearchableItemAttributeSet) SetContributors(contributors *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetCopyright

func (o *CSSearchableItemAttributeSet) SetCopyright(copyright *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetCountry

func (o *CSSearchableItemAttributeSet) SetCountry(country *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetCoverage

func (*CSSearchableItemAttributeSet) SetCreator

func (o *CSSearchableItemAttributeSet) SetCreator(creator *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetDarkThumbnailURL

func (o *CSSearchableItemAttributeSet) SetDarkThumbnailURL(darkThumbnailURL *foundation.NSURL)

func (*CSSearchableItemAttributeSet) SetDeliveryType

func (o *CSSearchableItemAttributeSet) SetDeliveryType(deliveryType *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetDirector

func (o *CSSearchableItemAttributeSet) SetDirector(director *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetDisplayName

func (o *CSSearchableItemAttributeSet) SetDisplayName(displayName *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetDomainIdentifier

func (o *CSSearchableItemAttributeSet) SetDomainIdentifier(domainIdentifier unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetDownloadedDate

func (o *CSSearchableItemAttributeSet) SetDownloadedDate(downloadedDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetDueDate

func (o *CSSearchableItemAttributeSet) SetDueDate(dueDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetDuration

func (o *CSSearchableItemAttributeSet) SetDuration(duration *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetEXIFGPSVersion

func (o *CSSearchableItemAttributeSet) SetEXIFGPSVersion(eXIFGPSVersion *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetEXIFVersion

func (o *CSSearchableItemAttributeSet) SetEXIFVersion(eXIFVersion *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetEditors

func (*CSSearchableItemAttributeSet) SetEmailAddresses

func (o *CSSearchableItemAttributeSet) SetEmailAddresses(emailAddresses *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetEmailHeaders

func (o *CSSearchableItemAttributeSet) SetEmailHeaders(emailHeaders *foundation.NSDictionary[*foundation.NSString, objc.ID])

func (*CSSearchableItemAttributeSet) SetEncodingApplications

func (o *CSSearchableItemAttributeSet) SetEncodingApplications(encodingApplications *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetEndDate

func (o *CSSearchableItemAttributeSet) SetEndDate(endDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetExposureMode

func (o *CSSearchableItemAttributeSet) SetExposureMode(exposureMode *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetExposureProgram

func (o *CSSearchableItemAttributeSet) SetExposureProgram(exposureProgram *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetExposureTime

func (o *CSSearchableItemAttributeSet) SetExposureTime(exposureTime *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetExposureTimeString

func (o *CSSearchableItemAttributeSet) SetExposureTimeString(exposureTimeString *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetFNumber

func (o *CSSearchableItemAttributeSet) SetFNumber(fNumber *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetFileSize

func (o *CSSearchableItemAttributeSet) SetFileSize(fileSize *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetFlashOn

func (o *CSSearchableItemAttributeSet) SetFlashOn(flashOn *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetFocalLength

func (o *CSSearchableItemAttributeSet) SetFocalLength(focalLength *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetFocalLength35mm

func (o *CSSearchableItemAttributeSet) SetFocalLength35mm(focalLength35mm *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetFontNames

func (o *CSSearchableItemAttributeSet) SetFontNames(fontNames *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetFullyFormattedAddress

func (o *CSSearchableItemAttributeSet) SetFullyFormattedAddress(fullyFormattedAddress *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetGPSAreaInformation

func (o *CSSearchableItemAttributeSet) SetGPSAreaInformation(gPSAreaInformation *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetGPSDOP

func (o *CSSearchableItemAttributeSet) SetGPSDOP(gPSDOP *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGPSDateStamp

func (o *CSSearchableItemAttributeSet) SetGPSDateStamp(gPSDateStamp *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetGPSDestBearing

func (o *CSSearchableItemAttributeSet) SetGPSDestBearing(gPSDestBearing *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGPSDestDistance

func (o *CSSearchableItemAttributeSet) SetGPSDestDistance(gPSDestDistance *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGPSDestLatitude

func (o *CSSearchableItemAttributeSet) SetGPSDestLatitude(gPSDestLatitude *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGPSDestLongitude

func (o *CSSearchableItemAttributeSet) SetGPSDestLongitude(gPSDestLongitude *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGPSDifferental

func (o *CSSearchableItemAttributeSet) SetGPSDifferental(gPSDifferental *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGPSMapDatum

func (o *CSSearchableItemAttributeSet) SetGPSMapDatum(gPSMapDatum *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetGPSMeasureMode

func (o *CSSearchableItemAttributeSet) SetGPSMeasureMode(gPSMeasureMode *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetGPSProcessingMethod

func (o *CSSearchableItemAttributeSet) SetGPSProcessingMethod(gPSProcessingMethod *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetGPSStatus

func (o *CSSearchableItemAttributeSet) SetGPSStatus(gPSStatus *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetGPSTrack

func (o *CSSearchableItemAttributeSet) SetGPSTrack(gPSTrack *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGeneralMIDISequence

func (o *CSSearchableItemAttributeSet) SetGeneralMIDISequence(generalMIDISequence *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetGenre

func (o *CSSearchableItemAttributeSet) SetGenre(genre *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetHTMLContentData

func (o *CSSearchableItemAttributeSet) SetHTMLContentData(hTMLContentData *foundation.NSData)

func (*CSSearchableItemAttributeSet) SetHasAlphaChannel

func (o *CSSearchableItemAttributeSet) SetHasAlphaChannel(hasAlphaChannel *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetHeadline

func (o *CSSearchableItemAttributeSet) SetHeadline(headline *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetHiddenAdditionalRecipients

func (o *CSSearchableItemAttributeSet) SetHiddenAdditionalRecipients(hiddenAdditionalRecipients *foundation.NSArray[*CSPerson])

func (*CSSearchableItemAttributeSet) SetISOSpeed

func (o *CSSearchableItemAttributeSet) SetISOSpeed(iSOSpeed *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetIdentifier

func (o *CSSearchableItemAttributeSet) SetIdentifier(identifier *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetImageDirection

func (o *CSSearchableItemAttributeSet) SetImageDirection(imageDirection *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetImportantDates

func (o *CSSearchableItemAttributeSet) SetImportantDates(importantDates *foundation.NSArray[*foundation.NSDate])

func (*CSSearchableItemAttributeSet) SetInformation

func (o *CSSearchableItemAttributeSet) SetInformation(information *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetInstantMessageAddresses

func (o *CSSearchableItemAttributeSet) SetInstantMessageAddresses(instantMessageAddresses *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetInstructions

func (o *CSSearchableItemAttributeSet) SetInstructions(instructions *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetKeySignature

func (o *CSSearchableItemAttributeSet) SetKeySignature(keySignature *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetKeywords

func (*CSSearchableItemAttributeSet) SetKind

func (*CSSearchableItemAttributeSet) SetLanguages

func (o *CSSearchableItemAttributeSet) SetLanguages(languages *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetLastUsedDate

func (o *CSSearchableItemAttributeSet) SetLastUsedDate(lastUsedDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetLatitude

func (o *CSSearchableItemAttributeSet) SetLatitude(latitude *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetLayerNames

func (o *CSSearchableItemAttributeSet) SetLayerNames(layerNames *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetLensModel

func (o *CSSearchableItemAttributeSet) SetLensModel(lensModel *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetLikelyJunk

func (o *CSSearchableItemAttributeSet) SetLikelyJunk(likelyJunk *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetLocal

func (o *CSSearchableItemAttributeSet) SetLocal(local *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetLongitude

func (o *CSSearchableItemAttributeSet) SetLongitude(longitude *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetLyricist

func (o *CSSearchableItemAttributeSet) SetLyricist(lyricist *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetMailboxIdentifiers

func (o *CSSearchableItemAttributeSet) SetMailboxIdentifiers(mailboxIdentifiers *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetMaxAperture

func (o *CSSearchableItemAttributeSet) SetMaxAperture(maxAperture *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetMediaTypes

func (o *CSSearchableItemAttributeSet) SetMediaTypes(mediaTypes *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetMetadataModificationDate

func (o *CSSearchableItemAttributeSet) SetMetadataModificationDate(metadataModificationDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetMeteringMode

func (o *CSSearchableItemAttributeSet) SetMeteringMode(meteringMode *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetMusicalGenre

func (o *CSSearchableItemAttributeSet) SetMusicalGenre(musicalGenre *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetMusicalInstrumentCategory

func (o *CSSearchableItemAttributeSet) SetMusicalInstrumentCategory(musicalInstrumentCategory *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetMusicalInstrumentName

func (o *CSSearchableItemAttributeSet) SetMusicalInstrumentName(musicalInstrumentName *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetNamedLocation

func (o *CSSearchableItemAttributeSet) SetNamedLocation(namedLocation *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetOrganizations

func (o *CSSearchableItemAttributeSet) SetOrganizations(organizations *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetOrientation

func (o *CSSearchableItemAttributeSet) SetOrientation(orientation *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetOriginalFormat

func (o *CSSearchableItemAttributeSet) SetOriginalFormat(originalFormat *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetOriginalSource

func (o *CSSearchableItemAttributeSet) SetOriginalSource(originalSource *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetPageCount

func (o *CSSearchableItemAttributeSet) SetPageCount(pageCount *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetPageHeight

func (o *CSSearchableItemAttributeSet) SetPageHeight(pageHeight *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetPageWidth

func (o *CSSearchableItemAttributeSet) SetPageWidth(pageWidth *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetParticipants

func (o *CSSearchableItemAttributeSet) SetParticipants(participants *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetPath

func (*CSSearchableItemAttributeSet) SetPerformers

func (o *CSSearchableItemAttributeSet) SetPerformers(performers *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetPhoneNumbers

func (o *CSSearchableItemAttributeSet) SetPhoneNumbers(phoneNumbers *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetPixelCount

func (o *CSSearchableItemAttributeSet) SetPixelCount(pixelCount *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetPixelHeight

func (o *CSSearchableItemAttributeSet) SetPixelHeight(pixelHeight *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetPixelWidth

func (o *CSSearchableItemAttributeSet) SetPixelWidth(pixelWidth *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetPlayCount

func (o *CSSearchableItemAttributeSet) SetPlayCount(playCount *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetPostalCode

func (o *CSSearchableItemAttributeSet) SetPostalCode(postalCode *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetPrimaryRecipients

func (o *CSSearchableItemAttributeSet) SetPrimaryRecipients(primaryRecipients *foundation.NSArray[*CSPerson])

func (*CSSearchableItemAttributeSet) SetProducer

func (o *CSSearchableItemAttributeSet) SetProducer(producer *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetProfileName

func (o *CSSearchableItemAttributeSet) SetProfileName(profileName *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetProjects

func (*CSSearchableItemAttributeSet) SetProviderDataTypeIdentifiers

func (o *CSSearchableItemAttributeSet) SetProviderDataTypeIdentifiers(providerDataTypeIdentifiers unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetProviderFileTypeIdentifiers

func (o *CSSearchableItemAttributeSet) SetProviderFileTypeIdentifiers(providerFileTypeIdentifiers unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetProviderInPlaceFileTypeIdentifiers

func (o *CSSearchableItemAttributeSet) SetProviderInPlaceFileTypeIdentifiers(providerInPlaceFileTypeIdentifiers unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetPublishers

func (o *CSSearchableItemAttributeSet) SetPublishers(publishers *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetRankingHint

func (o *CSSearchableItemAttributeSet) SetRankingHint(rankingHint unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetRating

func (o *CSSearchableItemAttributeSet) SetRating(rating *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetRatingDescription

func (o *CSSearchableItemAttributeSet) SetRatingDescription(ratingDescription *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetRecipientAddresses

func (o *CSSearchableItemAttributeSet) SetRecipientAddresses(recipientAddresses *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetRecipientEmailAddresses

func (o *CSSearchableItemAttributeSet) SetRecipientEmailAddresses(recipientEmailAddresses *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetRecipientNames

func (o *CSSearchableItemAttributeSet) SetRecipientNames(recipientNames *foundation.NSArray[*foundation.NSString])

func (*CSSearchableItemAttributeSet) SetRecordingDate

func (o *CSSearchableItemAttributeSet) SetRecordingDate(recordingDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetRedEyeOn

func (o *CSSearchableItemAttributeSet) SetRedEyeOn(redEyeOn *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetRelatedUniqueIdentifier

func (o *CSSearchableItemAttributeSet) SetRelatedUniqueIdentifier(relatedUniqueIdentifier *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetResolutionHeightDPI

func (o *CSSearchableItemAttributeSet) SetResolutionHeightDPI(resolutionHeightDPI *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetResolutionWidthDPI

func (o *CSSearchableItemAttributeSet) SetResolutionWidthDPI(resolutionWidthDPI *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetRights

func (o *CSSearchableItemAttributeSet) SetRights(rights *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetRole

func (*CSSearchableItemAttributeSet) SetSecurityMethod

func (o *CSSearchableItemAttributeSet) SetSecurityMethod(securityMethod *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetSpeed

func (o *CSSearchableItemAttributeSet) SetSpeed(speed *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetStartDate

func (o *CSSearchableItemAttributeSet) SetStartDate(startDate *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetStateOrProvince

func (o *CSSearchableItemAttributeSet) SetStateOrProvince(stateOrProvince *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetStreamable

func (o *CSSearchableItemAttributeSet) SetStreamable(streamable *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetSubThoroughfare

func (o *CSSearchableItemAttributeSet) SetSubThoroughfare(subThoroughfare *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetSubject

func (o *CSSearchableItemAttributeSet) SetSubject(subject *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetSupportsNavigation

func (o *CSSearchableItemAttributeSet) SetSupportsNavigation(supportsNavigation *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetSupportsPhoneCall

func (o *CSSearchableItemAttributeSet) SetSupportsPhoneCall(supportsPhoneCall *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetTempo

func (o *CSSearchableItemAttributeSet) SetTempo(tempo *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetTextContent

func (o *CSSearchableItemAttributeSet) SetTextContent(textContent *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetTheme

func (o *CSSearchableItemAttributeSet) SetTheme(theme *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetThoroughfare

func (o *CSSearchableItemAttributeSet) SetThoroughfare(thoroughfare *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetThumbnailData

func (o *CSSearchableItemAttributeSet) SetThumbnailData(thumbnailData *foundation.NSData)

func (*CSSearchableItemAttributeSet) SetThumbnailURL

func (o *CSSearchableItemAttributeSet) SetThumbnailURL(thumbnailURL *foundation.NSURL)

func (*CSSearchableItemAttributeSet) SetTimeSignature

func (o *CSSearchableItemAttributeSet) SetTimeSignature(timeSignature *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetTimestamp

func (o *CSSearchableItemAttributeSet) SetTimestamp(timestamp *foundation.NSDate)

func (*CSSearchableItemAttributeSet) SetTitle

func (o *CSSearchableItemAttributeSet) SetTitle(title *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetTotalBitRate

func (o *CSSearchableItemAttributeSet) SetTotalBitRate(totalBitRate *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetTranscribedTextContent

func (o *CSSearchableItemAttributeSet) SetTranscribedTextContent(transcribedTextContent *foundation.NSString)

func (*CSSearchableItemAttributeSet) SetURL

func (*CSSearchableItemAttributeSet) SetUserCreated

func (o *CSSearchableItemAttributeSet) SetUserCreated(userCreated unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetUserCurated

func (o *CSSearchableItemAttributeSet) SetUserCurated(userCurated unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetUserOwned

func (o *CSSearchableItemAttributeSet) SetUserOwned(userOwned unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetValueForCustomKey

func (o *CSSearchableItemAttributeSet) SetValueForCustomKey(value foundation.NSSecureCoding, key *CSCustomAttributeKey)

Sets the value for a custom attribute key.

func (*CSSearchableItemAttributeSet) SetVideoBitRate

func (o *CSSearchableItemAttributeSet) SetVideoBitRate(videoBitRate *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) SetWeakRelatedUniqueIdentifier

func (o *CSSearchableItemAttributeSet) SetWeakRelatedUniqueIdentifier(weakRelatedUniqueIdentifier unsafe.Pointer)

func (*CSSearchableItemAttributeSet) SetWhiteBalance

func (o *CSSearchableItemAttributeSet) SetWhiteBalance(whiteBalance *foundation.NSNumber)

func (*CSSearchableItemAttributeSet) Speed

func (*CSSearchableItemAttributeSet) StartDate

func (*CSSearchableItemAttributeSet) StateOrProvince

func (o *CSSearchableItemAttributeSet) StateOrProvince() *foundation.NSString

func (*CSSearchableItemAttributeSet) SubThoroughfare

func (o *CSSearchableItemAttributeSet) SubThoroughfare() *foundation.NSString

func (*CSSearchableItemAttributeSet) Subject

Subject of the this item.

func (*CSSearchableItemAttributeSet) SupportsNavigation

func (o *CSSearchableItemAttributeSet) SupportsNavigation() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) SupportsPhoneCall

func (o *CSSearchableItemAttributeSet) SupportsPhoneCall() *foundation.NSNumber

func (*CSSearchableItemAttributeSet) Tempo

func (*CSSearchableItemAttributeSet) TextContent

func (*CSSearchableItemAttributeSet) TextContentSummary

func (o *CSSearchableItemAttributeSet) TextContentSummary() *foundation.NSString

func (*CSSearchableItemAttributeSet) Theme

func (*CSSearchableItemAttributeSet) Thoroughfare

func (*CSSearchableItemAttributeSet) ThumbnailData

func (o *CSSearchableItemAttributeSet) ThumbnailData() *foundation.NSData

func (*CSSearchableItemAttributeSet) ThumbnailURL

func (o *CSSearchableItemAttributeSet) ThumbnailURL() *foundation.NSURL

func (*CSSearchableItemAttributeSet) TimeSignature

func (o *CSSearchableItemAttributeSet) TimeSignature() *foundation.NSString

func (*CSSearchableItemAttributeSet) Timestamp

func (*CSSearchableItemAttributeSet) Title

func (*CSSearchableItemAttributeSet) TotalBitRate

func (*CSSearchableItemAttributeSet) TranscribedTextContent

func (o *CSSearchableItemAttributeSet) TranscribedTextContent() *foundation.NSString

func (*CSSearchableItemAttributeSet) URL

func (*CSSearchableItemAttributeSet) ValueForCustomKey

Returns the value associated with the specified custom attribute key.

func (*CSSearchableItemAttributeSet) VideoBitRate

func (*CSSearchableItemAttributeSet) WeakRelatedUniqueIdentifier

func (o *CSSearchableItemAttributeSet) WeakRelatedUniqueIdentifier() unsafe.Pointer

func (*CSSearchableItemAttributeSet) WhiteBalance

type CSSearchableItemUpdateListenerOptions

type CSSearchableItemUpdateListenerOptions uint64
const (
	CSSearchableItemUpdateListenerOptionDefault       CSSearchableItemUpdateListenerOptions = 0
	CSSearchableItemUpdateListenerOptionSummarization CSSearchableItemUpdateListenerOptions = 2
	CSSearchableItemUpdateListenerOptionPriority      CSSearchableItemUpdateListenerOptions = 4
)

func (CSSearchableItemUpdateListenerOptions) String

type CSSuggestion

type CSSuggestion struct {
	foundation.NSObject
}

The kind of suggestion to use in a query.

Apple documentation: https://developer.apple.com/documentation/corespotlight/cssuggestion

func CSSuggestionFromID

func CSSuggestionFromID(id objc.ID) *CSSuggestion

func (*CSSuggestion) Compare

Compares the suggestion with a second specified suggestion.

func (*CSSuggestion) CompareByRank

func (o *CSSuggestion) CompareByRank(other *CSSuggestion) foundation.NSComparisonResult

func (*CSSuggestion) LocalizedAttributedSuggestion

func (o *CSSuggestion) LocalizedAttributedSuggestion() *foundation.NSAttributedString

func (*CSSuggestion) SuggestionKind

func (o *CSSuggestion) SuggestionKind() CSSuggestionKind

type CSSuggestionKind

type CSSuggestionKind int64

The suggestion type that determines how the system handles a suggestion.

const (
	CSSuggestionKindNone    CSSuggestionKind = 0
	CSSuggestionKindCustom  CSSuggestionKind = 1
	CSSuggestionKindDefault CSSuggestionKind = 2
)

func (CSSuggestionKind) String

func (e CSSuggestionKind) String() string

type CSUserInteraction

type CSUserInteraction int64
const (
	CSUserInteractionSelect  CSUserInteraction = 0
	CSUserInteractionDefault CSUserInteraction = 0
	CSUserInteractionFocus   CSUserInteraction = 1
)

func (CSUserInteraction) String

func (e CSUserInteraction) String() string

type CSUserQuery

type CSUserQuery struct {
	CSSearchQuery
}

A type you use to initiate searches from your interface and offer suggested text completions.

Apple documentation: https://developer.apple.com/documentation/corespotlight/csuserquery

func CSUserQueryFromID

func CSUserQueryFromID(id objc.ID) *CSUserQuery

func (*CSUserQuery) FoundSuggestionCount

func (o *CSUserQuery) FoundSuggestionCount() int

func (*CSUserQuery) FoundSuggestionsHandler

func (o *CSUserQuery) FoundSuggestionsHandler() objc.Block

func (*CSUserQuery) InitWithUserQueryStringUserQueryContext

func (o *CSUserQuery) InitWithUserQueryStringUserQueryContext(userQueryString *foundation.NSString, userQueryContext *CSUserQueryContext) *CSUserQuery

Creates a new user query that searches for the specified term.

func (*CSUserQuery) SetFoundSuggestionsHandler

func (o *CSUserQuery) SetFoundSuggestionsHandler(foundSuggestionsHandler func(*foundation.NSArray[*CSSuggestion]))

func (*CSUserQuery) UserEngagedWithItemVisibleItemsUserInteractionType

func (o *CSUserQuery) UserEngagedWithItemVisibleItemsUserInteractionType(item *CSSearchableItem, visibleItems *foundation.NSArray[*CSSearchableItem], userInteractionType CSUserInteraction)

func (*CSUserQuery) UserEngagedWithSuggestionVisibleSuggestionsUserInteractionType

func (o *CSUserQuery) UserEngagedWithSuggestionVisibleSuggestionsUserInteractionType(suggestion *CSSuggestion, visibleSuggestions *foundation.NSArray[*CSSuggestion], userInteractionType CSUserInteraction)

type CSUserQueryContext

type CSUserQueryContext struct {
	CSSearchQueryContext
}

The configuration details to apply to a user query.

Apple documentation: https://developer.apple.com/documentation/corespotlight/csuserquerycontext

func CSUserQueryContextFromID

func CSUserQueryContextFromID(id objc.ID) *CSUserQueryContext

func CSUserQueryContextUserQueryContext

func CSUserQueryContextUserQueryContext() *CSUserQueryContext

Returns the current behavior configuration for the user query.

func CSUserQueryContextUserQueryContextWithCurrentSuggestion

func CSUserQueryContextUserQueryContextWithCurrentSuggestion(currentSuggestion *CSSuggestion) *CSUserQueryContext

Creates a new query context object with an optional suggested search string.

func (*CSUserQueryContext) DisableSemanticSearch

func (o *CSUserQueryContext) DisableSemanticSearch() bool

func (*CSUserQueryContext) EnableRankedResults

func (o *CSUserQueryContext) EnableRankedResults() bool

func (*CSUserQueryContext) MaxRankedResultCount

func (o *CSUserQueryContext) MaxRankedResultCount() int

func (*CSUserQueryContext) MaxResultCount

func (o *CSUserQueryContext) MaxResultCount() int

func (*CSUserQueryContext) MaxSuggestionCount

func (o *CSUserQueryContext) MaxSuggestionCount() int

func (*CSUserQueryContext) SetDisableSemanticSearch

func (o *CSUserQueryContext) SetDisableSemanticSearch(disableSemanticSearch bool)

func (*CSUserQueryContext) SetEnableRankedResults

func (o *CSUserQueryContext) SetEnableRankedResults(enableRankedResults bool)

func (*CSUserQueryContext) SetMaxRankedResultCount

func (o *CSUserQueryContext) SetMaxRankedResultCount(maxRankedResultCount int)

func (*CSUserQueryContext) SetMaxResultCount

func (o *CSUserQueryContext) SetMaxResultCount(maxResultCount int)

func (*CSUserQueryContext) SetMaxSuggestionCount

func (o *CSUserQueryContext) SetMaxSuggestionCount(maxSuggestionCount int)

type Clockid_t

type Clockid_t int64

func (Clockid_t) String

func (e Clockid_t) String() string

type Dispatch_autorelease_frequency_t

type Dispatch_autorelease_frequency_t uint64
const (
	DISPATCH_AUTORELEASE_FREQUENCY_INHERIT   Dispatch_autorelease_frequency_t = 0
	DISPATCH_AUTORELEASE_FREQUENCY_WORK_ITEM Dispatch_autorelease_frequency_t = 1
	DISPATCH_AUTORELEASE_FREQUENCY_NEVER     Dispatch_autorelease_frequency_t = 2
)

func (Dispatch_autorelease_frequency_t) String

type Dispatch_block_flags_t

type Dispatch_block_flags_t uint64
const (
	DISPATCH_BLOCK_BARRIER           Dispatch_block_flags_t = 1
	DISPATCH_BLOCK_DETACHED          Dispatch_block_flags_t = 2
	DISPATCH_BLOCK_ASSIGN_CURRENT    Dispatch_block_flags_t = 4
	DISPATCH_BLOCK_NO_QOS_CLASS      Dispatch_block_flags_t = 8
	DISPATCH_BLOCK_INHERIT_QOS_CLASS Dispatch_block_flags_t = 16
	DISPATCH_BLOCK_ENFORCE_QOS_CLASS Dispatch_block_flags_t = 32
)

func (Dispatch_block_flags_t) String

func (e Dispatch_block_flags_t) String() string

type Filesec_property_t

type Filesec_property_t int64
const (
	FILESEC_OWNER         Filesec_property_t = 1
	FILESEC_GROUP         Filesec_property_t = 2
	FILESEC_UUID          Filesec_property_t = 3
	FILESEC_MODE          Filesec_property_t = 4
	FILESEC_ACL           Filesec_property_t = 5
	FILESEC_GRPUUID       Filesec_property_t = 6
	FILESEC_ACL_RAW       Filesec_property_t = 100
	FILESEC_ACL_ALLOCSIZE Filesec_property_t = 101
)

func (Filesec_property_t) String

func (e Filesec_property_t) String() string

type Idtype_t

type Idtype_t int64
const (
	P_ALL  Idtype_t = 0
	P_PID  Idtype_t = 1
	P_PGID Idtype_t = 2
)

func (Idtype_t) String

func (e Idtype_t) String() string

type Ipc_info_object_type_t

type Ipc_info_object_type_t int64
const (
	IPC_OTYPE_NONE                 Ipc_info_object_type_t = 0
	IPC_OTYPE_THREAD_CONTROL       Ipc_info_object_type_t = 1
	IPC_OTYPE_TASK_CONTROL         Ipc_info_object_type_t = 2
	IPC_OTYPE_HOST                 Ipc_info_object_type_t = 3
	IPC_OTYPE_HOST_PRIV            Ipc_info_object_type_t = 4
	IPC_OTYPE_PROCESSOR            Ipc_info_object_type_t = 5
	IPC_OTYPE_PROCESSOR_SET        Ipc_info_object_type_t = 6
	IPC_OTYPE_PROCESSOR_SET_NAME   Ipc_info_object_type_t = 7
	IPC_OTYPE_TIMER                Ipc_info_object_type_t = 8
	IPC_OTYPE_PORT_SUBST_ONCE      Ipc_info_object_type_t = 9
	IPC_OTYPE_MIG                  Ipc_info_object_type_t = 10
	IPC_OTYPE_MEMORY_OBJECT        Ipc_info_object_type_t = 11
	IPC_OTYPE_XMM_PAGER            Ipc_info_object_type_t = 12
	IPC_OTYPE_XMM_KERNEL           Ipc_info_object_type_t = 13
	IPC_OTYPE_XMM_REPLY            Ipc_info_object_type_t = 14
	IPC_OTYPE_UND_REPLY            Ipc_info_object_type_t = 15
	IPC_OTYPE_HOST_NOTIFY          Ipc_info_object_type_t = 16
	IPC_OTYPE_HOST_SECURITY        Ipc_info_object_type_t = 17
	IPC_OTYPE_LEDGER               Ipc_info_object_type_t = 18
	IPC_OTYPE_MAIN_DEVICE          Ipc_info_object_type_t = 19
	IPC_OTYPE_TASK_NAME            Ipc_info_object_type_t = 20
	IPC_OTYPE_SUBSYSTEM            Ipc_info_object_type_t = 21
	IPC_OTYPE_IO_DONE_QUEUE        Ipc_info_object_type_t = 22
	IPC_OTYPE_SEMAPHORE            Ipc_info_object_type_t = 23
	IPC_OTYPE_LOCK_SET             Ipc_info_object_type_t = 24
	IPC_OTYPE_CLOCK                Ipc_info_object_type_t = 25
	IPC_OTYPE_CLOCK_CTRL           Ipc_info_object_type_t = 26
	IPC_OTYPE_IOKIT_IDENT          Ipc_info_object_type_t = 27
	IPC_OTYPE_NAMED_ENTRY          Ipc_info_object_type_t = 28
	IPC_OTYPE_IOKIT_CONNECT        Ipc_info_object_type_t = 29
	IPC_OTYPE_IOKIT_OBJECT         Ipc_info_object_type_t = 30
	IPC_OTYPE_UPL                  Ipc_info_object_type_t = 31
	IPC_OTYPE_MEM_OBJ_CONTROL      Ipc_info_object_type_t = 32
	IPC_OTYPE_AU_SESSIONPORT       Ipc_info_object_type_t = 33
	IPC_OTYPE_FILEPORT             Ipc_info_object_type_t = 34
	IPC_OTYPE_LABELH               Ipc_info_object_type_t = 35
	IPC_OTYPE_TASK_RESUME          Ipc_info_object_type_t = 36
	IPC_OTYPE_VOUCHER              Ipc_info_object_type_t = 37
	IPC_OTYPE_VOUCHER_ATTR_CONTROL Ipc_info_object_type_t = 38
	IPC_OTYPE_WORK_INTERVAL        Ipc_info_object_type_t = 39
	IPC_OTYPE_UX_HANDLER           Ipc_info_object_type_t = 40
	IPC_OTYPE_UEXT_OBJECT          Ipc_info_object_type_t = 41
	IPC_OTYPE_ARCADE_REG           Ipc_info_object_type_t = 42
	IPC_OTYPE_EVENTLINK            Ipc_info_object_type_t = 43
	IPC_OTYPE_TASK_INSPECT         Ipc_info_object_type_t = 44
	IPC_OTYPE_TASK_READ            Ipc_info_object_type_t = 45
	IPC_OTYPE_THREAD_INSPECT       Ipc_info_object_type_t = 46
	IPC_OTYPE_THREAD_READ          Ipc_info_object_type_t = 47
	IPC_OTYPE_SUID_CRED            Ipc_info_object_type_t = 48
	IPC_OTYPE_HYPERVISOR           Ipc_info_object_type_t = 49
	IPC_OTYPE_TASK_ID_TOKEN        Ipc_info_object_type_t = 50
	IPC_OTYPE_TASK_FATAL           Ipc_info_object_type_t = 51
	IPC_OTYPE_KCDATA               Ipc_info_object_type_t = 52
	IPC_OTYPE_EXCLAVES_RESOURCE    Ipc_info_object_type_t = 53
	IPC_OTYPE_THREAD_RESUME        Ipc_info_object_type_t = 54
	IPC_OTYPE_UNKNOWN              Ipc_info_object_type_t = 4294967295
)

func (Ipc_info_object_type_t) String

func (e Ipc_info_object_type_t) String() string

type Launch_data_type_t

type Launch_data_type_t int64
const (
	LAUNCH_DATA_DICTIONARY Launch_data_type_t = 1
	LAUNCH_DATA_ARRAY      Launch_data_type_t = 2
	LAUNCH_DATA_FD         Launch_data_type_t = 3
	LAUNCH_DATA_INTEGER    Launch_data_type_t = 4
	LAUNCH_DATA_REAL       Launch_data_type_t = 5
	LAUNCH_DATA_BOOL       Launch_data_type_t = 6
	LAUNCH_DATA_STRING     Launch_data_type_t = 7
	LAUNCH_DATA_OPAQUE     Launch_data_type_t = 8
	LAUNCH_DATA_ERRNO      Launch_data_type_t = 9
	LAUNCH_DATA_MACHPORT   Launch_data_type_t = 10
)

func (Launch_data_type_t) String

func (e Launch_data_type_t) String() string

type MDLabelDomain

type MDLabelDomain int64

@typedef MDLabelDomain @abstract These constants are used to specify a domain to MDLabelCreate().

const (
	KMDLabelUserDomain  MDLabelDomain = 0
	KMDLabelLocalDomain MDLabelDomain = 1
)

func (MDLabelDomain) String

func (e MDLabelDomain) String() string

type MDQueryOptionFlags

type MDQueryOptionFlags int64
const (
	KMDQuerySynchronous        MDQueryOptionFlags = 1
	KMDQueryWantsUpdates       MDQueryOptionFlags = 4
	KMDQueryAllowFSTranslation MDQueryOptionFlags = 8
)

func (MDQueryOptionFlags) String

func (e MDQueryOptionFlags) String() string

type MDQuerySortOptionFlags

type MDQuerySortOptionFlags int64

@enum MDQuerySortOptionFlags @constant kMDQueryReverseSortOrderFlag Sort the attribute in reverse order.

const (
	KMDQueryReverseSortOrderFlag MDQuerySortOptionFlags = 1
)

func (MDQuerySortOptionFlags) String

func (e MDQuerySortOptionFlags) String() string

type Mach_vm_range_flags_t

type Mach_vm_range_flags_t int64
const (
	MACH_VM_RANGE_NONE Mach_vm_range_flags_t = 0
)

func (Mach_vm_range_flags_t) String

func (e Mach_vm_range_flags_t) String() string

type Mach_vm_range_flavor_t

type Mach_vm_range_flavor_t int64
const (
	MACH_VM_RANGE_FLAVOR_INVALID Mach_vm_range_flavor_t = 0
	MACH_VM_RANGE_FLAVOR_V1      Mach_vm_range_flavor_t = 1
)

func (Mach_vm_range_flavor_t) String

func (e Mach_vm_range_flavor_t) String() string

type Mach_vm_range_tag_t

type Mach_vm_range_tag_t int64
const (
	MACH_VM_RANGE_DEFAULT Mach_vm_range_tag_t = 0
	MACH_VM_RANGE_DATA    Mach_vm_range_tag_t = 1
	MACH_VM_RANGE_FIXED   Mach_vm_range_tag_t = 2
)

func (Mach_vm_range_tag_t) String

func (e Mach_vm_range_tag_t) String() string

type Mpo_flags_t

type Mpo_flags_t int64
const (
	MPO_PORT                            Mpo_flags_t = 0
	MPO_SERVICE_PORT                    Mpo_flags_t = 1024
	MPO_CONNECTION_PORT                 Mpo_flags_t = 2048
	MPO_REPLY_PORT                      Mpo_flags_t = 4096
	MPO_WEAK_REPLY_PORT                 Mpo_flags_t = 16384
	MPO_NOTIFICATION_PORT               Mpo_flags_t = 17408
	MPO_EXCEPTION_PORT                  Mpo_flags_t = 32768
	MPO_CONNECTION_PORT_WITH_PORT_ARRAY Mpo_flags_t = 65536
)

func (Mpo_flags_t) String

func (e Mpo_flags_t) String() string

type Os_clockid_t

type Os_clockid_t int64
const (
	OS_CLOCK_MACH_ABSOLUTE_TIME Os_clockid_t = 32
)

func (Os_clockid_t) String

func (e Os_clockid_t) String() string

type Ptrauth_key

type Ptrauth_key int64
const (
	Ptrauth_key_none                     Ptrauth_key = -1
	Ptrauth_key_asia                     Ptrauth_key = 0
	Ptrauth_key_asib                     Ptrauth_key = 1
	Ptrauth_key_asda                     Ptrauth_key = 2
	Ptrauth_key_asdb                     Ptrauth_key = 3
	Ptrauth_key_process_independent_code Ptrauth_key = 0
	Ptrauth_key_process_dependent_code   Ptrauth_key = 1
	Ptrauth_key_process_independent_data Ptrauth_key = 2
	Ptrauth_key_process_dependent_data   Ptrauth_key = 3
	Ptrauth_key_return_address           Ptrauth_key = 1
	Ptrauth_key_frame_pointer            Ptrauth_key = 3
	Ptrauth_key_function_pointer         Ptrauth_key = 0
	Ptrauth_key_block_function           Ptrauth_key = 0
	Ptrauth_key_cxx_vtable_pointer       Ptrauth_key = 2
	Ptrauth_key_method_list_pointer      Ptrauth_key = 2
	Ptrauth_key_objc_isa_pointer         Ptrauth_key = 2
	Ptrauth_key_objc_super_pointer       Ptrauth_key = 2
	Ptrauth_key_objc_sel_pointer         Ptrauth_key = 3
	Ptrauth_key_objc_class_ro_pointer    Ptrauth_key = 2
	Ptrauth_key_block_descriptor_pointer Ptrauth_key = 2
	Ptrauth_key_init_fini_pointer        Ptrauth_key = 0
)

func (Ptrauth_key) String

func (e Ptrauth_key) String() string

type Qos_class_t

type Qos_class_t uint32
const (
	QOS_CLASS_USER_INTERACTIVE Qos_class_t = 33
	QOS_CLASS_USER_INITIATED   Qos_class_t = 25
	QOS_CLASS_DEFAULT          Qos_class_t = 21
	QOS_CLASS_UTILITY          Qos_class_t = 17
	QOS_CLASS_BACKGROUND       Qos_class_t = 9
	QOS_CLASS_UNSPECIFIED      Qos_class_t = 0
)

func (Qos_class_t) String

func (e Qos_class_t) String() string

type Virtual_memory_guard_exception_code_t

type Virtual_memory_guard_exception_code_t int64
const (
	KGUARD_EXC_DEALLOC_GAP                   Virtual_memory_guard_exception_code_t = 1
	KGUARD_EXC_RECLAIM_COPYIO_FAILURE        Virtual_memory_guard_exception_code_t = 2
	KGUARD_EXC_RECLAIM_INDEX_FAILURE         Virtual_memory_guard_exception_code_t = 4
	KGUARD_EXC_RECLAIM_DEALLOCATE_FAILURE    Virtual_memory_guard_exception_code_t = 8
	KGUARD_EXC_RECLAIM_ACCOUNTING_FAILURE    Virtual_memory_guard_exception_code_t = 9
	KGUARD_EXC_SEC_IOPL_ON_EXEC_PAGE         Virtual_memory_guard_exception_code_t = 10
	KGUARD_EXC_SEC_EXEC_ON_IOPL_PAGE         Virtual_memory_guard_exception_code_t = 11
	KGUARD_EXC_SEC_UPL_WRITE_ON_EXEC_REGION  Virtual_memory_guard_exception_code_t = 12
	KGUARD_EXC_LARGE_ALLOCATION_TELEMETRY    Virtual_memory_guard_exception_code_t = 13
	KGUARD_EXC_SEC_ACCESS_FAULT              Virtual_memory_guard_exception_code_t = 98
	KGUARD_EXC_SEC_ASYNC_ACCESS_FAULT        Virtual_memory_guard_exception_code_t = 99
	KGUARD_EXC_SEC_COPY_DENIED               Virtual_memory_guard_exception_code_t = 100
	KGUARD_EXC_SEC_SHARING_DENIED            Virtual_memory_guard_exception_code_t = 101
	KGUARD_EXC_MTE_SYNC_FAULT                Virtual_memory_guard_exception_code_t = 200
	KGUARD_EXC_MTE_ASYNC_USER_FAULT          Virtual_memory_guard_exception_code_t = 201
	KGUARD_EXC_MTE_ASYNC_KERN_FAULT          Virtual_memory_guard_exception_code_t = 202
	KGUARD_EXC_GUARD_OBJECT_ASYNC_USER_FAULT Virtual_memory_guard_exception_code_t = 203
	KGUARD_EXC_GUARD_OBJECT_ASYNC_KERN_FAULT Virtual_memory_guard_exception_code_t = 204
)

func (Virtual_memory_guard_exception_code_t) String

type Xpc_listener_create_flags_t

type Xpc_listener_create_flags_t int64
const (
	XPC_LISTENER_CREATE_NONE             Xpc_listener_create_flags_t = 0
	XPC_LISTENER_CREATE_INACTIVE         Xpc_listener_create_flags_t = 1
	XPC_LISTENER_CREATE_FORCE_MACH       Xpc_listener_create_flags_t = 2
	XPC_LISTENER_CREATE_FORCE_XPCSERVICE Xpc_listener_create_flags_t = 4
)

func (Xpc_listener_create_flags_t) String

type Xpc_session_create_flags_t

type Xpc_session_create_flags_t int64
const (
	XPC_SESSION_CREATE_NONE            Xpc_session_create_flags_t = 0
	XPC_SESSION_CREATE_INACTIVE        Xpc_session_create_flags_t = 1
	XPC_SESSION_CREATE_MACH_PRIVILEGED Xpc_session_create_flags_t = 2
)

func (Xpc_session_create_flags_t) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL