KoreanTextRecognizerOptions.Builder
Stay organized with collections
Save and categorize content based on your preferences.
Public Constructor Summary
Inherited Method Summary
From class java.lang.Object
Object
|
clone()
|
boolean |
|
void |
finalize()
|
final Class<?>
|
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String
|
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
Public Methods
Sets the custom Executor
to use. If no Executor
is set, an internal background thread pool will be used.
Most clients should not need to call this method.
Returns
- this object, for chaining method calls
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-10-31 UTC.
[null,null,["Last updated 2024-10-31 UTC."],[[["\u003cp\u003e\u003ccode\u003eKoreanTextRecognizerOptions.Builder\u003c/code\u003e is used to create \u003ccode\u003eKoreanTextRecognizerOptions\u003c/code\u003e instances for Korean text recognition.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to customize the text recognition process, such as setting a custom \u003ccode\u003eExecutor\u003c/code\u003e for task execution.\u003c/p\u003e\n"],["\u003cp\u003eBy default, if no custom \u003ccode\u003eExecutor\u003c/code\u003e is specified, an internal background thread pool handles the text recognition tasks.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ebuild()\u003c/code\u003e method finalizes the configuration and returns a \u003ccode\u003eKoreanTextRecognizerOptions\u003c/code\u003e object ready for use.\u003c/p\u003e\n"]]],["The `KoreanTextRecognizerOptions.Builder` class facilitates creating `KoreanTextRecognizerOptions` instances. Key actions include: using the `Builder()` constructor, calling `build()` to generate a new instance, and optionally setting a custom `Executor` via `setExecutor()`. If no executor is specified, a default internal thread pool is used. `setExecutor()` is typically unnecessary for most use cases, but it allows customization for managing how tasks are executed.\n"],null,["# KoreanTextRecognizerOptions.Builder\n\npublic static class **KoreanTextRecognizerOptions.Builder** extends [Object](//developer.android.com/reference/java/lang/Object.html) \nBuilder for the [KoreanTextRecognizerOptions](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions)\nclass. \n\n### Public Constructor Summary\n\n|---|-------------------------------------------------------------------------------------------------------------------|\n| | [Builder](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions.Builder#Builder())() |\n\n### Public Method Summary\n\n|-----------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [KoreanTextRecognizerOptions](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions) | [build](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions.Builder#build())() Creates a new [KoreanTextRecognizerOptions](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions) instance. |\n| [KoreanTextRecognizerOptions.Builder](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions.Builder) | [setExecutor](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions.Builder#setExecutor(java.util.concurrent.Executor))([Executor](//developer.android.com/reference/java/util/concurrent/Executor.html) executor) Sets the custom [Executor](//developer.android.com/reference/java/util/concurrent/Executor.html) to use. |\n\n### Inherited Method Summary\n\nFrom class java.lang.Object \n\n|----------------------------------------------------------------------------|--------------------------------------------------------------------------------|\n| [Object](//developer.android.com/reference/java/lang/Object.html) | clone() |\n| boolean | equals([Object](//developer.android.com/reference/java/lang/Object.html) arg0) |\n| void | finalize() |\n| final [Class](//developer.android.com/reference/java/lang/Class.html)\\\u003c?\\\u003e | getClass() |\n| int | hashCode() |\n| final void | notify() |\n| final void | notifyAll() |\n| [String](//developer.android.com/reference/java/lang/String.html) | toString() |\n| final void | wait(long arg0, int arg1) |\n| final void | wait(long arg0) |\n| final void | wait() |\n\nPublic Constructors\n-------------------\n\n#### public **Builder** ()\n\nPublic Methods\n--------------\n\n#### public [KoreanTextRecognizerOptions](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions)\n**build** ()\n\nCreates a new [KoreanTextRecognizerOptions](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions) instance. \n\n#### public [KoreanTextRecognizerOptions.Builder](/android/reference/com/google/mlkit/vision/text/korean/KoreanTextRecognizerOptions.Builder) **setExecutor** ([Executor](//developer.android.com/reference/java/util/concurrent/Executor.html) executor)\n\nSets the custom [Executor](//developer.android.com/reference/java/util/concurrent/Executor.html)\nto use. If no [Executor](//developer.android.com/reference/java/util/concurrent/Executor.html)\nis set, an internal background thread pool will be used.\n\nMost clients should not need to call this method. \n\n##### Parameters\n\n| executor | the [Executor](//developer.android.com/reference/java/util/concurrent/Executor.html) to use |\n|----------|---------------------------------------------------------------------------------------------|\n\n##### Returns\n\n- this object, for chaining method calls"]]