use of com.google.cloud.translate.v3beta1.TranslationServiceClient.ListGlossariesPagedResponse in project google-cloud-java by GoogleCloudPlatform.
the class TranslateSnippetsBeta method listGlossary.
// [END translate_create_glossary_beta]
/**
* Lists all the glossaries for a given project.
*
* @param projectId - Id of the project.
* @param location - location name.
* @param filter - criteria for listing glossaries.
*/
// [START translate_list_glossary_beta]
static ListGlossariesPagedResponse listGlossary(String projectId, String location, String filter) {
try (TranslationServiceClient translationServiceClient = TranslationServiceClient.create()) {
LocationName locationName = LocationName.newBuilder().setProject(projectId).setLocation(location).build();
ListGlossariesPagedResponse response = translationServiceClient.listGlossaries(locationName.toString(), filter);
// Call the API
for (Glossary element : response.iterateAll()) {
System.out.format("Name: %s\n", element.getName());
System.out.format("Language Codes Set:\n");
System.out.format("Source Language Code: %s\n", element.getLanguageCodesSet().getLanguageCodesList().get(0));
System.out.format("Target Language Code: %s\n", element.getLanguageCodesSet().getLanguageCodesList().get(1));
System.out.format("Input Uri: %s\n", element.getInputConfig().getGcsSource());
}
return response;
} catch (Exception e) {
throw new RuntimeException("Couldn't create client.", e);
}
}
Aggregations