use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class CustomizationsTest method testListWords.
/**
* Test list words.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testListWords() throws InterruptedException {
final List<Word> expected = instantiateWords();
server.enqueue(jsonResponse(ImmutableMap.of(WORDS, expected)));
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(CUSTOMIZATION_ID).build();
final Words result = service.listWords(listOptions).execute();
final RecordedRequest request = server.takeRequest();
assertEquals(String.format(WORDS_PATH, CUSTOMIZATION_ID), request.getPath());
assertEquals("GET", request.getMethod());
assertEquals(expected, result.getWords());
}
use of com.ibm.watson.developer_cloud.text_to_speech.v1.model.Words in project java-sdk by watson-developer-cloud.
the class SpeechToText method listWords.
/**
* Lists all custom words from a custom language model.
*
* Lists information about custom words from a custom language model. You can list all words from the custom model's
* words resource, only custom words that were added or modified by the user, or only out-of-vocabulary (OOV) words
* that were extracted from corpora. You can also indicate the order in which the service is to return words; by
* default, words are listed in ascending alphabetical order. You must use credentials for the instance of the service
* that owns a model to query information about its words.
*
* @param listWordsOptions the {@link ListWordsOptions} containing the options for the call
* @return a {@link ServiceCall} with a response type of {@link Words}
*/
public ServiceCall<Words> listWords(ListWordsOptions listWordsOptions) {
Validator.notNull(listWordsOptions, "listWordsOptions cannot be null");
String[] pathSegments = { "v1/customizations", "words" };
String[] pathParameters = { listWordsOptions.customizationId() };
RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
if (listWordsOptions.wordType() != null) {
builder.query("word_type", listWordsOptions.wordType());
}
if (listWordsOptions.sort() != null) {
builder.query("sort", listWordsOptions.sort());
}
return createServiceCall(builder.build(), ResponseConverterUtils.getObject(Words.class));
}
Aggregations