public class Translate
extends com.google.api.client.googleapis.services.json.AbstractGoogleJsonClient
Translates text from one language to another.
For more information about this service, see the API Documentation
This service uses TranslateRequestInitializer to initialize global parameters via its
Translate.Builder.
| Modifier and Type | Class and Description |
|---|---|
static class |
Translate.Builder
Builder for
Translate. |
class |
Translate.Detections
The "detections" collection of methods.
|
class |
Translate.Languages
The "languages" collection of methods.
|
class |
Translate.Translations
The "translations" collection of methods.
|
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
DEFAULT_BASE_URL
The default encoded base URL of the service.
|
static java.lang.String |
DEFAULT_ROOT_URL
The default encoded root URL of the service.
|
static java.lang.String |
DEFAULT_SERVICE_PATH
The default encoded service path of the service.
|
| Constructor and Description |
|---|
Translate(com.google.api.client.http.HttpTransport transport,
com.google.api.client.json.JsonFactory jsonFactory,
com.google.api.client.http.HttpRequestInitializer httpRequestInitializer)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
Translate.Detections |
detections()
An accessor for creating requests from the Detections collection.
|
protected void |
initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest<?> httpClientRequest) |
Translate.Languages |
languages()
An accessor for creating requests from the Languages collection.
|
Translate.Translations |
translations()
An accessor for creating requests from the Translations collection.
|
getJsonFactory, getObjectParserpublic static final java.lang.String DEFAULT_ROOT_URL
public static final java.lang.String DEFAULT_SERVICE_PATH
public static final java.lang.String DEFAULT_BASE_URL
public Translate(com.google.api.client.http.HttpTransport transport,
com.google.api.client.json.JsonFactory jsonFactory,
com.google.api.client.http.HttpRequestInitializer httpRequestInitializer)
Use Translate.Builder if you need to specify any of the optional parameters.
transport - HTTP transport, which should normally be:
com.google.api.client.extensions.appengine.http.UrlFetchTransportnewCompatibleTransport from
com.google.api.client.extensions.android.http.AndroidHttpcom.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()
jsonFactory - JSON factory, which may be:
com.google.api.client.json.jackson2.JacksonFactorycom.google.api.client.json.gson.GsonFactorycom.google.api.client.extensions.android.json.AndroidJsonFactoryhttpRequestInitializer - HTTP request initializer or null for noneprotected void initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest<?> httpClientRequest)
throws java.io.IOException
initialize in class com.google.api.client.googleapis.services.AbstractGoogleClientjava.io.IOExceptionpublic Translate.Detections detections()
The typical use is:
Translate translate = new Translate(...);Translate.Detections.List request = translate.detections().list(parameters ...)
public Translate.Languages languages()
The typical use is:
Translate translate = new Translate(...);Translate.Languages.List request = translate.languages().list(parameters ...)
public Translate.Translations translations()
The typical use is:
Translate translate = new Translate(...);Translate.Translations.List request = translate.translations().list(parameters ...)