MLKitLanguageID Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
Type Definitions
The following type definitions are available globally.
-
A block that handles a language identification result.
Declaration
Swift
typealias
IdentifyLanguageCallback
=
(
String
?,
Error
?)
->
Void
Parameters
-
A block that handles the result of identifying possible languages.
Declaration
Swift
typealias
IdentifyPossibleLanguagesCallback
=
([
MLKIdentifiedLanguage
]?,
Error
?)
->
Void
Parameters
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[[["\u003cp\u003e\u003ccode\u003eIdentifyLanguageCallback\u003c/code\u003e is a type definition for a block that handles the result of language identification, providing the identified language tag or an error.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eIdentifyPossibleLanguagesCallback\u003c/code\u003e is a type definition for a block that handles the result of identifying possible languages, providing a list of identified languages with their confidence scores or an error.\u003c/p\u003e\n"]]],["Two type definitions, `IdentifyLanguageCallback` and `IdentifyPossibleLanguagesCallback`, are defined. `IdentifyLanguageCallback` handles a language identification result, providing a language tag or an error. `IdentifyPossibleLanguagesCallback` deals with the identification of multiple possible languages, returning a list of identified languages or an error. Both callbacks use parameters to communicate the identified language(s) and any errors encountered during the process.\n"],null,["# MLKitLanguageID Framework Reference\n\nType Definitions\n================\n\nThe following type definitions are available globally.\n- `\n ``\n ``\n `\n\n ### [IdentifyLanguageCallback](#/c:MLKLanguageIdentification.h@T@MLKIdentifyLanguageCallback)\n\n `\n ` \n A block that handles a language identification result. \n\n #### Declaration\n\n Swift \n\n typealias IdentifyLanguageCallback = (String?, Error?) -\u003e Void\n\n #### Parameters\n\n |---------------------|--------------------------------------------------------------------------------------------------------------------------------------------|\n | ` `*languageTag*` ` | The identified language tag for the text, `IdentifiedLanguage.undetermined` if no language was identified, or `nil` if there was an error. |\n | ` `*error*` ` | The error or `nil`. |\n\n- `\n ``\n ``\n `\n\n ### [IdentifyPossibleLanguagesCallback](#/c:MLKLanguageIdentification.h@T@MLKIdentifyPossibleLanguagesCallback)\n\n `\n ` \n A block that handles the result of identifying possible languages. \n\n #### Declaration\n\n Swift \n\n typealias IdentifyPossibleLanguagesCallback = ([MLKIdentifiedLanguage]?, Error?) -\u003e Void\n\n #### Parameters\n\n |-----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n | ` `*identifiedLanguages*` ` | The list of identified languages for the text, or `nil` in case of an error. If no languages were identified, the result will consist of a single element with the language `IdentifiedLanguage.undetermined` and confidence 1. |\n | ` `*error*` ` | The error or `nil`. |"]]