TranslateRemoteModel.Builder
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 Constructors
public Builder (String language)
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."],[[["`TranslateRemoteModel.Builder` is used to create instances of `TranslateRemoteModel`, which likely represents a remote translation model."],["The builder requires a language code to be specified during instantiation using its constructor."],["A `TranslateRemoteModel` instance is created by calling the `build()` method on the builder."],["It inherits methods from the `Object` class, offering standard functionalities like `equals`, `hashCode`, and `toString`."]]],["The `TranslateRemoteModel.Builder` class facilitates the creation of `TranslateRemoteModel` instances. It includes a constructor, `Builder(String language)`, which takes a language string as input. The `build()` method is the primary action, responsible for generating a new `TranslateRemoteModel` object. The class also inherits methods from the base Object class, like `clone()`, `equals()`, and `toString()`, to manage generic object behaviors.\n"]]