public class SpeechToText extends WatsonService
defaultHeaders, MESSAGE_CODE, MESSAGE_ERROR, skipAuthentication, VERSION| Constructor and Description | 
|---|
| SpeechToText()Instantiates a new `SpeechToText`. | 
| SpeechToText(IamOptions iamOptions)Instantiates a new `SpeechToText` with IAM. | 
| SpeechToText(java.lang.String username,
            java.lang.String password)Instantiates a new `SpeechToText` with username and password. | 
| Modifier and Type | Method and Description | 
|---|---|
| ServiceCall<java.lang.Void> | addAudio(AddAudioOptions addAudioOptions)Add an audio resource. | 
| ServiceCall<java.lang.Void> | addCorpus(AddCorpusOptions addCorpusOptions)Add a corpus. | 
| ServiceCall<java.lang.Void> | addWord(AddWordOptions addWordOptions)Add a custom word. | 
| ServiceCall<java.lang.Void> | addWords(AddWordsOptions addWordsOptions)Add custom words. | 
| ServiceCall<RecognitionJob> | checkJob(CheckJobOptions checkJobOptions)Check a job. | 
| ServiceCall<RecognitionJobs> | checkJobs()Check jobs. | 
| ServiceCall<RecognitionJobs> | checkJobs(CheckJobsOptions checkJobsOptions)Check jobs. | 
| ServiceCall<AcousticModel> | createAcousticModel(CreateAcousticModelOptions createAcousticModelOptions)Create a custom acoustic model. | 
| ServiceCall<RecognitionJob> | createJob(CreateJobOptions createJobOptions)Create a job. | 
| ServiceCall<LanguageModel> | createLanguageModel(CreateLanguageModelOptions createLanguageModelOptions)Create a custom language model. | 
| ServiceCall<java.lang.Void> | deleteAcousticModel(DeleteAcousticModelOptions deleteAcousticModelOptions)Delete a custom acoustic model. | 
| ServiceCall<java.lang.Void> | deleteAudio(DeleteAudioOptions deleteAudioOptions)Delete an audio resource. | 
| ServiceCall<java.lang.Void> | deleteCorpus(DeleteCorpusOptions deleteCorpusOptions)Delete a corpus. | 
| ServiceCall<java.lang.Void> | deleteJob(DeleteJobOptions deleteJobOptions)Delete a job. | 
| ServiceCall<java.lang.Void> | deleteLanguageModel(DeleteLanguageModelOptions deleteLanguageModelOptions)Delete a custom language model. | 
| ServiceCall<java.lang.Void> | deleteWord(DeleteWordOptions deleteWordOptions)Delete a custom word. | 
| ServiceCall<AcousticModel> | getAcousticModel(GetAcousticModelOptions getAcousticModelOptions)List a custom acoustic model. | 
| ServiceCall<AudioListing> | getAudio(GetAudioOptions getAudioOptions)List an audio resource. | 
| ServiceCall<Corpus> | getCorpus(GetCorpusOptions getCorpusOptions)List a corpus. | 
| ServiceCall<LanguageModel> | getLanguageModel(GetLanguageModelOptions getLanguageModelOptions)List a custom language model. | 
| ServiceCall<SpeechModel> | getModel(GetModelOptions getModelOptions)Retrieves information about the model. | 
| ServiceCall<Word> | getWord(GetWordOptions getWordOptions)List a custom word. | 
| ServiceCall<AcousticModels> | listAcousticModels()List custom acoustic models. | 
| ServiceCall<AcousticModels> | listAcousticModels(ListAcousticModelsOptions listAcousticModelsOptions)List custom acoustic models. | 
| ServiceCall<AudioResources> | listAudio(ListAudioOptions listAudioOptions)List audio resources. | 
| ServiceCall<Corpora> | listCorpora(ListCorporaOptions listCorporaOptions)List corpora. | 
| ServiceCall<LanguageModels> | listLanguageModels()List custom language models. | 
| ServiceCall<LanguageModels> | listLanguageModels(ListLanguageModelsOptions listLanguageModelsOptions)List custom language models. | 
| ServiceCall<SpeechModels> | listModels()Get models. | 
| ServiceCall<SpeechModels> | listModels(ListModelsOptions listModelsOptions)Get models. | 
| ServiceCall<Words> | listWords(ListWordsOptions listWordsOptions)List custom words. | 
| ServiceCall<SpeechRecognitionResults> | recognize(RecognizeOptions recognizeOptions)Recognizes an audio file and returns  SpeechRecognitionResults.Here is an example of how to recognize an audio file: | 
| okhttp3.WebSocket | recognizeUsingWebSocket(RecognizeOptions recognizeOptions,
                       RecognizeCallback callback)Sends audio and returns transcription results for recognition requests over a WebSocket connection. | 
| ServiceCall<RegisterStatus> | registerCallback(RegisterCallbackOptions registerCallbackOptions)Register a callback. | 
| ServiceCall<java.lang.Void> | resetAcousticModel(ResetAcousticModelOptions resetAcousticModelOptions)Reset a custom acoustic model. | 
| ServiceCall<java.lang.Void> | resetLanguageModel(ResetLanguageModelOptions resetLanguageModelOptions)Reset a custom language model. | 
| ServiceCall<java.lang.Void> | trainAcousticModel(TrainAcousticModelOptions trainAcousticModelOptions)Train a custom acoustic model. | 
| ServiceCall<java.lang.Void> | trainLanguageModel(TrainLanguageModelOptions trainLanguageModelOptions)Train a custom language model. | 
| ServiceCall<java.lang.Void> | unregisterCallback(UnregisterCallbackOptions unregisterCallbackOptions)Unregister a callback. | 
| ServiceCall<java.lang.Void> | upgradeAcousticModel(UpgradeAcousticModelOptions upgradeAcousticModelOptions)Upgrade a custom acoustic model. | 
| ServiceCall<java.lang.Void> | upgradeLanguageModel(UpgradeLanguageModelOptions upgradeLanguageModelOptions)Upgrade a custom language model. | 
configureHttpClient, createServiceCall, getApiKey, getEndPoint, getName, getPassword, getToken, getUsername, processServiceCall, setApiKey, setAuthentication, setDefaultHeaders, setDefaultHeaders, setEndPoint, setIamCredentials, setSkipAuthentication, setUsernameAndPassword, toStringpublic SpeechToText()
public SpeechToText(java.lang.String username,
            java.lang.String password)
username - the usernamepassword - the passwordpublic SpeechToText(IamOptions iamOptions)
iamOptions - the options for authenticating through IAMpublic ServiceCall<SpeechModel> getModel(GetModelOptions getModelOptions)
getModelOptions - the GetModelOptions containing the options for the callServiceCall with a response type of SpeechModelpublic ServiceCall<SpeechModels> listModels(ListModelsOptions listModelsOptions)
listModelsOptions - the ListModelsOptions containing the options for the callServiceCall with a response type of SpeechModelspublic ServiceCall<SpeechModels> listModels()
ServiceCall with a response type of SpeechModelspublic ServiceCall<SpeechRecognitionResults> recognize(RecognizeOptions recognizeOptions)
SpeechRecognitionResults.
 SpeechToText service = new SpeechToText();
 service.setUsernameAndPassword("USERNAME", "PASSWORD");
 service.setEndPoint("SERVICE_URL");
 RecognizeOptions options = new RecognizeOptions().maxAlternatives(3).continuous(true);
 File audio = new File("sample1.wav");
 SpeechResults results = service.recognize(audio, options).execute();
 System.out.println(results);
 recognizeOptions - the recognize optionsSpeechRecognitionResultspublic okhttp3.WebSocket recognizeUsingWebSocket(RecognizeOptions recognizeOptions, RecognizeCallback callback)
recognizeOptions - the recognize optionscallback - the RecognizeCallback instance where results will be sentWebSocketpublic ServiceCall<RecognitionJob> checkJob(CheckJobOptions checkJobOptions)
checkJobOptions - the CheckJobOptions containing the options for the callServiceCall with a response type of RecognitionJobpublic ServiceCall<RecognitionJobs> checkJobs(CheckJobsOptions checkJobsOptions)
checkJobsOptions - the CheckJobsOptions containing the options for the callServiceCall with a response type of RecognitionJobspublic ServiceCall<RecognitionJobs> checkJobs()
ServiceCall with a response type of RecognitionJobspublic ServiceCall<RecognitionJob> createJob(CreateJobOptions createJobOptions)
createJobOptions - the CreateJobOptions containing the options for the callServiceCall with a response type of RecognitionJobpublic ServiceCall<java.lang.Void> deleteJob(DeleteJobOptions deleteJobOptions)
deleteJobOptions - the DeleteJobOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<RegisterStatus> registerCallback(RegisterCallbackOptions registerCallbackOptions)
registerCallbackOptions - the RegisterCallbackOptions containing the options for the callServiceCall with a response type of RegisterStatuspublic ServiceCall<java.lang.Void> unregisterCallback(UnregisterCallbackOptions unregisterCallbackOptions)
unregisterCallbackOptions - the UnregisterCallbackOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<LanguageModel> createLanguageModel(CreateLanguageModelOptions createLanguageModelOptions)
createLanguageModelOptions - the CreateLanguageModelOptions containing the options for the callServiceCall with a response type of LanguageModelpublic ServiceCall<java.lang.Void> deleteLanguageModel(DeleteLanguageModelOptions deleteLanguageModelOptions)
deleteLanguageModelOptions - the DeleteLanguageModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<LanguageModel> getLanguageModel(GetLanguageModelOptions getLanguageModelOptions)
getLanguageModelOptions - the GetLanguageModelOptions containing the options for the callServiceCall with a response type of LanguageModelpublic ServiceCall<LanguageModels> listLanguageModels(ListLanguageModelsOptions listLanguageModelsOptions)
listLanguageModelsOptions - the ListLanguageModelsOptions containing the options for the callServiceCall with a response type of LanguageModelspublic ServiceCall<LanguageModels> listLanguageModels()
ServiceCall with a response type of LanguageModelspublic ServiceCall<java.lang.Void> resetLanguageModel(ResetLanguageModelOptions resetLanguageModelOptions)
resetLanguageModelOptions - the ResetLanguageModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> trainLanguageModel(TrainLanguageModelOptions trainLanguageModelOptions)
trainLanguageModelOptions - the TrainLanguageModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> upgradeLanguageModel(UpgradeLanguageModelOptions upgradeLanguageModelOptions)
upgradeLanguageModelOptions - the UpgradeLanguageModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> addCorpus(AddCorpusOptions addCorpusOptions)
addCorpusOptions - the AddCorpusOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> deleteCorpus(DeleteCorpusOptions deleteCorpusOptions)
deleteCorpusOptions - the DeleteCorpusOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<Corpus> getCorpus(GetCorpusOptions getCorpusOptions)
getCorpusOptions - the GetCorpusOptions containing the options for the callServiceCall with a response type of Corpuspublic ServiceCall<Corpora> listCorpora(ListCorporaOptions listCorporaOptions)
listCorporaOptions - the ListCorporaOptions containing the options for the callServiceCall with a response type of Corporapublic ServiceCall<java.lang.Void> addWord(AddWordOptions addWordOptions)
addWordOptions - the AddWordOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> addWords(AddWordsOptions addWordsOptions)
addWordsOptions - the AddWordsOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> deleteWord(DeleteWordOptions deleteWordOptions)
deleteWordOptions - the DeleteWordOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<Word> getWord(GetWordOptions getWordOptions)
getWordOptions - the GetWordOptions containing the options for the callServiceCall with a response type of Wordpublic ServiceCall<Words> listWords(ListWordsOptions listWordsOptions)
listWordsOptions - the ListWordsOptions containing the options for the callServiceCall with a response type of Wordspublic ServiceCall<AcousticModel> createAcousticModel(CreateAcousticModelOptions createAcousticModelOptions)
createAcousticModelOptions - the CreateAcousticModelOptions containing the options for the callServiceCall with a response type of AcousticModelpublic ServiceCall<java.lang.Void> deleteAcousticModel(DeleteAcousticModelOptions deleteAcousticModelOptions)
deleteAcousticModelOptions - the DeleteAcousticModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<AcousticModel> getAcousticModel(GetAcousticModelOptions getAcousticModelOptions)
getAcousticModelOptions - the GetAcousticModelOptions containing the options for the callServiceCall with a response type of AcousticModelpublic ServiceCall<AcousticModels> listAcousticModels(ListAcousticModelsOptions listAcousticModelsOptions)
listAcousticModelsOptions - the ListAcousticModelsOptions containing the options for the callServiceCall with a response type of AcousticModelspublic ServiceCall<AcousticModels> listAcousticModels()
ServiceCall with a response type of AcousticModelspublic ServiceCall<java.lang.Void> resetAcousticModel(ResetAcousticModelOptions resetAcousticModelOptions)
resetAcousticModelOptions - the ResetAcousticModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> trainAcousticModel(TrainAcousticModelOptions trainAcousticModelOptions)
trainAcousticModelOptions - the TrainAcousticModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> upgradeAcousticModel(UpgradeAcousticModelOptions upgradeAcousticModelOptions)
upgradeAcousticModelOptions - the UpgradeAcousticModelOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> addAudio(AddAudioOptions addAudioOptions)
addAudioOptions - the AddAudioOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<java.lang.Void> deleteAudio(DeleteAudioOptions deleteAudioOptions)
deleteAudioOptions - the DeleteAudioOptions containing the options for the callServiceCall with a response type of Voidpublic ServiceCall<AudioListing> getAudio(GetAudioOptions getAudioOptions)
getAudioOptions - the GetAudioOptions containing the options for the callServiceCall with a response type of AudioListingpublic ServiceCall<AudioResources> listAudio(ListAudioOptions listAudioOptions)
listAudioOptions - the ListAudioOptions containing the options for the callServiceCall with a response type of AudioResources