com.google.cloud.speech.v1.LongRunningRecognizeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-google-cloud-speech-v1 Show documentation
Show all versions of grpc-google-cloud-speech-v1 Show documentation
GRPC library for grpc-google-cloud-speech-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/speech/v1/cloud_speech.proto
package com.google.cloud.speech.v1;
/**
*
* The top-level message sent by the client for the `LongRunningRecognize`
* method.
*
*
* Protobuf type {@code google.cloud.speech.v1.LongRunningRecognizeRequest}
*/
public final class LongRunningRecognizeRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.cloud.speech.v1.LongRunningRecognizeRequest)
LongRunningRecognizeRequestOrBuilder {
// Use LongRunningRecognizeRequest.newBuilder() to construct.
private LongRunningRecognizeRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private LongRunningRecognizeRequest() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private LongRunningRecognizeRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 10: {
com.google.cloud.speech.v1.RecognitionConfig.Builder subBuilder = null;
if (config_ != null) {
subBuilder = config_.toBuilder();
}
config_ = input.readMessage(com.google.cloud.speech.v1.RecognitionConfig.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(config_);
config_ = subBuilder.buildPartial();
}
break;
}
case 18: {
com.google.cloud.speech.v1.RecognitionAudio.Builder subBuilder = null;
if (audio_ != null) {
subBuilder = audio_.toBuilder();
}
audio_ = input.readMessage(com.google.cloud.speech.v1.RecognitionAudio.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(audio_);
audio_ = subBuilder.buildPartial();
}
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 {
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.speech.v1.SpeechProto.internal_static_google_cloud_speech_v1_LongRunningRecognizeRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.speech.v1.SpeechProto.internal_static_google_cloud_speech_v1_LongRunningRecognizeRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.speech.v1.LongRunningRecognizeRequest.class, com.google.cloud.speech.v1.LongRunningRecognizeRequest.Builder.class);
}
public static final int CONFIG_FIELD_NUMBER = 1;
private com.google.cloud.speech.v1.RecognitionConfig config_;
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public boolean hasConfig() {
return config_ != null;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public com.google.cloud.speech.v1.RecognitionConfig getConfig() {
return config_ == null ? com.google.cloud.speech.v1.RecognitionConfig.getDefaultInstance() : config_;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public com.google.cloud.speech.v1.RecognitionConfigOrBuilder getConfigOrBuilder() {
return getConfig();
}
public static final int AUDIO_FIELD_NUMBER = 2;
private com.google.cloud.speech.v1.RecognitionAudio audio_;
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public boolean hasAudio() {
return audio_ != null;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public com.google.cloud.speech.v1.RecognitionAudio getAudio() {
return audio_ == null ? com.google.cloud.speech.v1.RecognitionAudio.getDefaultInstance() : audio_;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public com.google.cloud.speech.v1.RecognitionAudioOrBuilder getAudioOrBuilder() {
return getAudio();
}
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 (config_ != null) {
output.writeMessage(1, getConfig());
}
if (audio_ != null) {
output.writeMessage(2, getAudio());
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (config_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getConfig());
}
if (audio_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getAudio());
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.speech.v1.LongRunningRecognizeRequest)) {
return super.equals(obj);
}
com.google.cloud.speech.v1.LongRunningRecognizeRequest other = (com.google.cloud.speech.v1.LongRunningRecognizeRequest) obj;
boolean result = true;
result = result && (hasConfig() == other.hasConfig());
if (hasConfig()) {
result = result && getConfig()
.equals(other.getConfig());
}
result = result && (hasAudio() == other.hasAudio());
if (hasAudio()) {
result = result && getAudio()
.equals(other.getAudio());
}
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasConfig()) {
hash = (37 * hash) + CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getConfig().hashCode();
}
if (hasAudio()) {
hash = (37 * hash) + AUDIO_FIELD_NUMBER;
hash = (53 * hash) + getAudio().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest 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.speech.v1.LongRunningRecognizeRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest 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.speech.v1.LongRunningRecognizeRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest 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.speech.v1.LongRunningRecognizeRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest 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.speech.v1.LongRunningRecognizeRequest 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;
}
/**
*
* The top-level message sent by the client for the `LongRunningRecognize`
* method.
*
*
* Protobuf type {@code google.cloud.speech.v1.LongRunningRecognizeRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.cloud.speech.v1.LongRunningRecognizeRequest)
com.google.cloud.speech.v1.LongRunningRecognizeRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.speech.v1.SpeechProto.internal_static_google_cloud_speech_v1_LongRunningRecognizeRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.speech.v1.SpeechProto.internal_static_google_cloud_speech_v1_LongRunningRecognizeRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.speech.v1.LongRunningRecognizeRequest.class, com.google.cloud.speech.v1.LongRunningRecognizeRequest.Builder.class);
}
// Construct using com.google.cloud.speech.v1.LongRunningRecognizeRequest.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();
if (configBuilder_ == null) {
config_ = null;
} else {
config_ = null;
configBuilder_ = null;
}
if (audioBuilder_ == null) {
audio_ = null;
} else {
audio_ = null;
audioBuilder_ = null;
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.cloud.speech.v1.SpeechProto.internal_static_google_cloud_speech_v1_LongRunningRecognizeRequest_descriptor;
}
public com.google.cloud.speech.v1.LongRunningRecognizeRequest getDefaultInstanceForType() {
return com.google.cloud.speech.v1.LongRunningRecognizeRequest.getDefaultInstance();
}
public com.google.cloud.speech.v1.LongRunningRecognizeRequest build() {
com.google.cloud.speech.v1.LongRunningRecognizeRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.cloud.speech.v1.LongRunningRecognizeRequest buildPartial() {
com.google.cloud.speech.v1.LongRunningRecognizeRequest result = new com.google.cloud.speech.v1.LongRunningRecognizeRequest(this);
if (configBuilder_ == null) {
result.config_ = config_;
} else {
result.config_ = configBuilder_.build();
}
if (audioBuilder_ == null) {
result.audio_ = audio_;
} else {
result.audio_ = audioBuilder_.build();
}
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
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, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.speech.v1.LongRunningRecognizeRequest) {
return mergeFrom((com.google.cloud.speech.v1.LongRunningRecognizeRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.speech.v1.LongRunningRecognizeRequest other) {
if (other == com.google.cloud.speech.v1.LongRunningRecognizeRequest.getDefaultInstance()) return this;
if (other.hasConfig()) {
mergeConfig(other.getConfig());
}
if (other.hasAudio()) {
mergeAudio(other.getAudio());
}
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.speech.v1.LongRunningRecognizeRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.cloud.speech.v1.LongRunningRecognizeRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.google.cloud.speech.v1.RecognitionConfig config_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.speech.v1.RecognitionConfig, com.google.cloud.speech.v1.RecognitionConfig.Builder, com.google.cloud.speech.v1.RecognitionConfigOrBuilder> configBuilder_;
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public boolean hasConfig() {
return configBuilder_ != null || config_ != null;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public com.google.cloud.speech.v1.RecognitionConfig getConfig() {
if (configBuilder_ == null) {
return config_ == null ? com.google.cloud.speech.v1.RecognitionConfig.getDefaultInstance() : config_;
} else {
return configBuilder_.getMessage();
}
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public Builder setConfig(com.google.cloud.speech.v1.RecognitionConfig value) {
if (configBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
config_ = value;
onChanged();
} else {
configBuilder_.setMessage(value);
}
return this;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public Builder setConfig(
com.google.cloud.speech.v1.RecognitionConfig.Builder builderForValue) {
if (configBuilder_ == null) {
config_ = builderForValue.build();
onChanged();
} else {
configBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public Builder mergeConfig(com.google.cloud.speech.v1.RecognitionConfig value) {
if (configBuilder_ == null) {
if (config_ != null) {
config_ =
com.google.cloud.speech.v1.RecognitionConfig.newBuilder(config_).mergeFrom(value).buildPartial();
} else {
config_ = value;
}
onChanged();
} else {
configBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public Builder clearConfig() {
if (configBuilder_ == null) {
config_ = null;
onChanged();
} else {
config_ = null;
configBuilder_ = null;
}
return this;
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public com.google.cloud.speech.v1.RecognitionConfig.Builder getConfigBuilder() {
onChanged();
return getConfigFieldBuilder().getBuilder();
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
public com.google.cloud.speech.v1.RecognitionConfigOrBuilder getConfigOrBuilder() {
if (configBuilder_ != null) {
return configBuilder_.getMessageOrBuilder();
} else {
return config_ == null ?
com.google.cloud.speech.v1.RecognitionConfig.getDefaultInstance() : config_;
}
}
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* optional .google.cloud.speech.v1.RecognitionConfig config = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.speech.v1.RecognitionConfig, com.google.cloud.speech.v1.RecognitionConfig.Builder, com.google.cloud.speech.v1.RecognitionConfigOrBuilder>
getConfigFieldBuilder() {
if (configBuilder_ == null) {
configBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.speech.v1.RecognitionConfig, com.google.cloud.speech.v1.RecognitionConfig.Builder, com.google.cloud.speech.v1.RecognitionConfigOrBuilder>(
getConfig(),
getParentForChildren(),
isClean());
config_ = null;
}
return configBuilder_;
}
private com.google.cloud.speech.v1.RecognitionAudio audio_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.speech.v1.RecognitionAudio, com.google.cloud.speech.v1.RecognitionAudio.Builder, com.google.cloud.speech.v1.RecognitionAudioOrBuilder> audioBuilder_;
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public boolean hasAudio() {
return audioBuilder_ != null || audio_ != null;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public com.google.cloud.speech.v1.RecognitionAudio getAudio() {
if (audioBuilder_ == null) {
return audio_ == null ? com.google.cloud.speech.v1.RecognitionAudio.getDefaultInstance() : audio_;
} else {
return audioBuilder_.getMessage();
}
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public Builder setAudio(com.google.cloud.speech.v1.RecognitionAudio value) {
if (audioBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
audio_ = value;
onChanged();
} else {
audioBuilder_.setMessage(value);
}
return this;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public Builder setAudio(
com.google.cloud.speech.v1.RecognitionAudio.Builder builderForValue) {
if (audioBuilder_ == null) {
audio_ = builderForValue.build();
onChanged();
} else {
audioBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public Builder mergeAudio(com.google.cloud.speech.v1.RecognitionAudio value) {
if (audioBuilder_ == null) {
if (audio_ != null) {
audio_ =
com.google.cloud.speech.v1.RecognitionAudio.newBuilder(audio_).mergeFrom(value).buildPartial();
} else {
audio_ = value;
}
onChanged();
} else {
audioBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public Builder clearAudio() {
if (audioBuilder_ == null) {
audio_ = null;
onChanged();
} else {
audio_ = null;
audioBuilder_ = null;
}
return this;
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public com.google.cloud.speech.v1.RecognitionAudio.Builder getAudioBuilder() {
onChanged();
return getAudioFieldBuilder().getBuilder();
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
public com.google.cloud.speech.v1.RecognitionAudioOrBuilder getAudioOrBuilder() {
if (audioBuilder_ != null) {
return audioBuilder_.getMessageOrBuilder();
} else {
return audio_ == null ?
com.google.cloud.speech.v1.RecognitionAudio.getDefaultInstance() : audio_;
}
}
/**
*
* *Required* The audio data to be recognized.
*
*
* optional .google.cloud.speech.v1.RecognitionAudio audio = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.speech.v1.RecognitionAudio, com.google.cloud.speech.v1.RecognitionAudio.Builder, com.google.cloud.speech.v1.RecognitionAudioOrBuilder>
getAudioFieldBuilder() {
if (audioBuilder_ == null) {
audioBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.speech.v1.RecognitionAudio, com.google.cloud.speech.v1.RecognitionAudio.Builder, com.google.cloud.speech.v1.RecognitionAudioOrBuilder>(
getAudio(),
getParentForChildren(),
isClean());
audio_ = null;
}
return audioBuilder_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:google.cloud.speech.v1.LongRunningRecognizeRequest)
}
// @@protoc_insertion_point(class_scope:google.cloud.speech.v1.LongRunningRecognizeRequest)
private static final com.google.cloud.speech.v1.LongRunningRecognizeRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.speech.v1.LongRunningRecognizeRequest();
}
public static com.google.cloud.speech.v1.LongRunningRecognizeRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public LongRunningRecognizeRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LongRunningRecognizeRequest(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.speech.v1.LongRunningRecognizeRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}