All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dialogflow.v2.InputAudioConfig Maven / Gradle / Ivy

There is a newer version: 4.55.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dialogflow/v2/session.proto

package com.google.cloud.dialogflow.v2;

/**
 * 
 * Instructs the speech recognizer how to process the audio content.
 * 
* * Protobuf type {@code google.cloud.dialogflow.v2.InputAudioConfig} */ public final class InputAudioConfig extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.InputAudioConfig) InputAudioConfigOrBuilder { private static final long serialVersionUID = 0L; // Use InputAudioConfig.newBuilder() to construct. private InputAudioConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private InputAudioConfig() { audioEncoding_ = 0; sampleRateHertz_ = 0; languageCode_ = ""; phraseHints_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private InputAudioConfig( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!parseUnknownFieldProto3( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } case 8: { int rawValue = input.readEnum(); audioEncoding_ = rawValue; break; } case 16: { sampleRateHertz_ = input.readInt32(); break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); languageCode_ = s; break; } case 34: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) { phraseHints_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000008; } phraseHints_.add(s); break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000008) == 0x00000008)) { phraseHints_ = phraseHints_.getUnmodifiableView(); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_InputAudioConfig_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_InputAudioConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.InputAudioConfig.class, com.google.cloud.dialogflow.v2.InputAudioConfig.Builder.class); } private int bitField0_; public static final int AUDIO_ENCODING_FIELD_NUMBER = 1; private int audioEncoding_; /** *
   * Required. Audio encoding of the audio content to process.
   * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public int getAudioEncodingValue() { return audioEncoding_; } /** *
   * Required. Audio encoding of the audio content to process.
   * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public com.google.cloud.dialogflow.v2.AudioEncoding getAudioEncoding() { com.google.cloud.dialogflow.v2.AudioEncoding result = com.google.cloud.dialogflow.v2.AudioEncoding.valueOf(audioEncoding_); return result == null ? com.google.cloud.dialogflow.v2.AudioEncoding.UNRECOGNIZED : result; } public static final int SAMPLE_RATE_HERTZ_FIELD_NUMBER = 2; private int sampleRateHertz_; /** *
   * Required. Sample rate (in Hertz) of the audio content sent in the query.
   * Refer to [Cloud Speech API documentation](/speech/docs/basics) for more
   * details.
   * 
* * int32 sample_rate_hertz = 2; */ public int getSampleRateHertz() { return sampleRateHertz_; } public static final int LANGUAGE_CODE_FIELD_NUMBER = 3; private volatile java.lang.Object languageCode_; /** *
   * Required. The language of the supplied audio. Dialogflow does not do
   * translations. See [Language
   * Support](https://dialogflow.com/docs/languages) for a list of the
   * currently supported language codes. Note that queries in the same session
   * do not necessarily need to specify the same language.
   * 
* * string language_code = 3; */ public java.lang.String getLanguageCode() { java.lang.Object ref = languageCode_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); languageCode_ = s; return s; } } /** *
   * Required. The language of the supplied audio. Dialogflow does not do
   * translations. See [Language
   * Support](https://dialogflow.com/docs/languages) for a list of the
   * currently supported language codes. Note that queries in the same session
   * do not necessarily need to specify the same language.
   * 
* * string language_code = 3; */ public com.google.protobuf.ByteString getLanguageCodeBytes() { java.lang.Object ref = languageCode_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); languageCode_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PHRASE_HINTS_FIELD_NUMBER = 4; private com.google.protobuf.LazyStringList phraseHints_; /** *
   * Optional. The collection of phrase hints which are used to boost accuracy
   * of speech recognition.
   * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
   * for more details.
   * 
* * repeated string phrase_hints = 4; */ public com.google.protobuf.ProtocolStringList getPhraseHintsList() { return phraseHints_; } /** *
   * Optional. The collection of phrase hints which are used to boost accuracy
   * of speech recognition.
   * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
   * for more details.
   * 
* * repeated string phrase_hints = 4; */ public int getPhraseHintsCount() { return phraseHints_.size(); } /** *
   * Optional. The collection of phrase hints which are used to boost accuracy
   * of speech recognition.
   * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
   * for more details.
   * 
* * repeated string phrase_hints = 4; */ public java.lang.String getPhraseHints(int index) { return phraseHints_.get(index); } /** *
   * Optional. The collection of phrase hints which are used to boost accuracy
   * of speech recognition.
   * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
   * for more details.
   * 
* * repeated string phrase_hints = 4; */ public com.google.protobuf.ByteString getPhraseHintsBytes(int index) { return phraseHints_.getByteString(index); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (audioEncoding_ != com.google.cloud.dialogflow.v2.AudioEncoding.AUDIO_ENCODING_UNSPECIFIED.getNumber()) { output.writeEnum(1, audioEncoding_); } if (sampleRateHertz_ != 0) { output.writeInt32(2, sampleRateHertz_); } if (!getLanguageCodeBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, languageCode_); } for (int i = 0; i < phraseHints_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, phraseHints_.getRaw(i)); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (audioEncoding_ != com.google.cloud.dialogflow.v2.AudioEncoding.AUDIO_ENCODING_UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, audioEncoding_); } if (sampleRateHertz_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(2, sampleRateHertz_); } if (!getLanguageCodeBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, languageCode_); } { int dataSize = 0; for (int i = 0; i < phraseHints_.size(); i++) { dataSize += computeStringSizeNoTag(phraseHints_.getRaw(i)); } size += dataSize; size += 1 * getPhraseHintsList().size(); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.dialogflow.v2.InputAudioConfig)) { return super.equals(obj); } com.google.cloud.dialogflow.v2.InputAudioConfig other = (com.google.cloud.dialogflow.v2.InputAudioConfig) obj; boolean result = true; result = result && audioEncoding_ == other.audioEncoding_; result = result && (getSampleRateHertz() == other.getSampleRateHertz()); result = result && getLanguageCode() .equals(other.getLanguageCode()); result = result && getPhraseHintsList() .equals(other.getPhraseHintsList()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + AUDIO_ENCODING_FIELD_NUMBER; hash = (53 * hash) + audioEncoding_; hash = (37 * hash) + SAMPLE_RATE_HERTZ_FIELD_NUMBER; hash = (53 * hash) + getSampleRateHertz(); hash = (37 * hash) + LANGUAGE_CODE_FIELD_NUMBER; hash = (53 * hash) + getLanguageCode().hashCode(); if (getPhraseHintsCount() > 0) { hash = (37 * hash) + PHRASE_HINTS_FIELD_NUMBER; hash = (53 * hash) + getPhraseHintsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.InputAudioConfig parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.cloud.dialogflow.v2.InputAudioConfig prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Instructs the speech recognizer how to process the audio content.
   * 
* * Protobuf type {@code google.cloud.dialogflow.v2.InputAudioConfig} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.InputAudioConfig) com.google.cloud.dialogflow.v2.InputAudioConfigOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_InputAudioConfig_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_InputAudioConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.InputAudioConfig.class, com.google.cloud.dialogflow.v2.InputAudioConfig.Builder.class); } // Construct using com.google.cloud.dialogflow.v2.InputAudioConfig.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } public Builder clear() { super.clear(); audioEncoding_ = 0; sampleRateHertz_ = 0; languageCode_ = ""; phraseHints_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000008); return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_InputAudioConfig_descriptor; } public com.google.cloud.dialogflow.v2.InputAudioConfig getDefaultInstanceForType() { return com.google.cloud.dialogflow.v2.InputAudioConfig.getDefaultInstance(); } public com.google.cloud.dialogflow.v2.InputAudioConfig build() { com.google.cloud.dialogflow.v2.InputAudioConfig result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.cloud.dialogflow.v2.InputAudioConfig buildPartial() { com.google.cloud.dialogflow.v2.InputAudioConfig result = new com.google.cloud.dialogflow.v2.InputAudioConfig(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; result.audioEncoding_ = audioEncoding_; result.sampleRateHertz_ = sampleRateHertz_; result.languageCode_ = languageCode_; if (((bitField0_ & 0x00000008) == 0x00000008)) { phraseHints_ = phraseHints_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000008); } result.phraseHints_ = phraseHints_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.dialogflow.v2.InputAudioConfig) { return mergeFrom((com.google.cloud.dialogflow.v2.InputAudioConfig)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.v2.InputAudioConfig other) { if (other == com.google.cloud.dialogflow.v2.InputAudioConfig.getDefaultInstance()) return this; if (other.audioEncoding_ != 0) { setAudioEncodingValue(other.getAudioEncodingValue()); } if (other.getSampleRateHertz() != 0) { setSampleRateHertz(other.getSampleRateHertz()); } if (!other.getLanguageCode().isEmpty()) { languageCode_ = other.languageCode_; onChanged(); } if (!other.phraseHints_.isEmpty()) { if (phraseHints_.isEmpty()) { phraseHints_ = other.phraseHints_; bitField0_ = (bitField0_ & ~0x00000008); } else { ensurePhraseHintsIsMutable(); phraseHints_.addAll(other.phraseHints_); } onChanged(); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.cloud.dialogflow.v2.InputAudioConfig parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.dialogflow.v2.InputAudioConfig) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private int audioEncoding_ = 0; /** *
     * Required. Audio encoding of the audio content to process.
     * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public int getAudioEncodingValue() { return audioEncoding_; } /** *
     * Required. Audio encoding of the audio content to process.
     * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public Builder setAudioEncodingValue(int value) { audioEncoding_ = value; onChanged(); return this; } /** *
     * Required. Audio encoding of the audio content to process.
     * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public com.google.cloud.dialogflow.v2.AudioEncoding getAudioEncoding() { com.google.cloud.dialogflow.v2.AudioEncoding result = com.google.cloud.dialogflow.v2.AudioEncoding.valueOf(audioEncoding_); return result == null ? com.google.cloud.dialogflow.v2.AudioEncoding.UNRECOGNIZED : result; } /** *
     * Required. Audio encoding of the audio content to process.
     * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public Builder setAudioEncoding(com.google.cloud.dialogflow.v2.AudioEncoding value) { if (value == null) { throw new NullPointerException(); } audioEncoding_ = value.getNumber(); onChanged(); return this; } /** *
     * Required. Audio encoding of the audio content to process.
     * 
* * .google.cloud.dialogflow.v2.AudioEncoding audio_encoding = 1; */ public Builder clearAudioEncoding() { audioEncoding_ = 0; onChanged(); return this; } private int sampleRateHertz_ ; /** *
     * Required. Sample rate (in Hertz) of the audio content sent in the query.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics) for more
     * details.
     * 
* * int32 sample_rate_hertz = 2; */ public int getSampleRateHertz() { return sampleRateHertz_; } /** *
     * Required. Sample rate (in Hertz) of the audio content sent in the query.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics) for more
     * details.
     * 
* * int32 sample_rate_hertz = 2; */ public Builder setSampleRateHertz(int value) { sampleRateHertz_ = value; onChanged(); return this; } /** *
     * Required. Sample rate (in Hertz) of the audio content sent in the query.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics) for more
     * details.
     * 
* * int32 sample_rate_hertz = 2; */ public Builder clearSampleRateHertz() { sampleRateHertz_ = 0; onChanged(); return this; } private java.lang.Object languageCode_ = ""; /** *
     * Required. The language of the supplied audio. Dialogflow does not do
     * translations. See [Language
     * Support](https://dialogflow.com/docs/languages) for a list of the
     * currently supported language codes. Note that queries in the same session
     * do not necessarily need to specify the same language.
     * 
* * string language_code = 3; */ public java.lang.String getLanguageCode() { java.lang.Object ref = languageCode_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); languageCode_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Required. The language of the supplied audio. Dialogflow does not do
     * translations. See [Language
     * Support](https://dialogflow.com/docs/languages) for a list of the
     * currently supported language codes. Note that queries in the same session
     * do not necessarily need to specify the same language.
     * 
* * string language_code = 3; */ public com.google.protobuf.ByteString getLanguageCodeBytes() { java.lang.Object ref = languageCode_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); languageCode_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Required. The language of the supplied audio. Dialogflow does not do
     * translations. See [Language
     * Support](https://dialogflow.com/docs/languages) for a list of the
     * currently supported language codes. Note that queries in the same session
     * do not necessarily need to specify the same language.
     * 
* * string language_code = 3; */ public Builder setLanguageCode( java.lang.String value) { if (value == null) { throw new NullPointerException(); } languageCode_ = value; onChanged(); return this; } /** *
     * Required. The language of the supplied audio. Dialogflow does not do
     * translations. See [Language
     * Support](https://dialogflow.com/docs/languages) for a list of the
     * currently supported language codes. Note that queries in the same session
     * do not necessarily need to specify the same language.
     * 
* * string language_code = 3; */ public Builder clearLanguageCode() { languageCode_ = getDefaultInstance().getLanguageCode(); onChanged(); return this; } /** *
     * Required. The language of the supplied audio. Dialogflow does not do
     * translations. See [Language
     * Support](https://dialogflow.com/docs/languages) for a list of the
     * currently supported language codes. Note that queries in the same session
     * do not necessarily need to specify the same language.
     * 
* * string language_code = 3; */ public Builder setLanguageCodeBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); languageCode_ = value; onChanged(); return this; } private com.google.protobuf.LazyStringList phraseHints_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensurePhraseHintsIsMutable() { if (!((bitField0_ & 0x00000008) == 0x00000008)) { phraseHints_ = new com.google.protobuf.LazyStringArrayList(phraseHints_); bitField0_ |= 0x00000008; } } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public com.google.protobuf.ProtocolStringList getPhraseHintsList() { return phraseHints_.getUnmodifiableView(); } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public int getPhraseHintsCount() { return phraseHints_.size(); } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public java.lang.String getPhraseHints(int index) { return phraseHints_.get(index); } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public com.google.protobuf.ByteString getPhraseHintsBytes(int index) { return phraseHints_.getByteString(index); } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public Builder setPhraseHints( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensurePhraseHintsIsMutable(); phraseHints_.set(index, value); onChanged(); return this; } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public Builder addPhraseHints( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensurePhraseHintsIsMutable(); phraseHints_.add(value); onChanged(); return this; } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public Builder addAllPhraseHints( java.lang.Iterable values) { ensurePhraseHintsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, phraseHints_); onChanged(); return this; } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public Builder clearPhraseHints() { phraseHints_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000008); onChanged(); return this; } /** *
     * Optional. The collection of phrase hints which are used to boost accuracy
     * of speech recognition.
     * Refer to [Cloud Speech API documentation](/speech/docs/basics#phrase-hints)
     * for more details.
     * 
* * repeated string phrase_hints = 4; */ public Builder addPhraseHintsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensurePhraseHintsIsMutable(); phraseHints_.add(value); onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.dialogflow.v2.InputAudioConfig) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.InputAudioConfig) private static final com.google.cloud.dialogflow.v2.InputAudioConfig DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.InputAudioConfig(); } public static com.google.cloud.dialogflow.v2.InputAudioConfig getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public InputAudioConfig parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new InputAudioConfig(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public com.google.cloud.dialogflow.v2.InputAudioConfig getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy