Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

chore: regenerate with updated protoc #192

Merged
merged 1 commit into from
Jun 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
* @return The progressPercent.
*/
@java.lang.Override
public int getProgressPercent() {
return progressPercent_;
}
Expand All @@ -170,6 +171,7 @@ public int getProgressPercent() {
*
* @return Whether the startTime field is set.
*/
@java.lang.Override
public boolean hasStartTime() {
return startTime_ != null;
}
Expand All @@ -184,6 +186,7 @@ public boolean hasStartTime() {
*
* @return The startTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getStartTime() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
Expand All @@ -196,6 +199,7 @@ public com.google.protobuf.Timestamp getStartTime() {
*
* <code>.google.protobuf.Timestamp start_time = 2;</code>
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
return getStartTime();
}
Expand All @@ -213,6 +217,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
*
* @return Whether the lastUpdateTime field is set.
*/
@java.lang.Override
public boolean hasLastUpdateTime() {
return lastUpdateTime_ != null;
}
Expand All @@ -227,6 +232,7 @@ public boolean hasLastUpdateTime() {
*
* @return The lastUpdateTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getLastUpdateTime() {
return lastUpdateTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
Expand All @@ -241,6 +247,7 @@ public com.google.protobuf.Timestamp getLastUpdateTime() {
*
* <code>.google.protobuf.Timestamp last_update_time = 3;</code>
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getLastUpdateTimeOrBuilder() {
return getLastUpdateTime();
}
Expand Down Expand Up @@ -634,6 +641,7 @@ public Builder mergeFrom(
*
* @return The progressPercent.
*/
@java.lang.Override
public int getProgressPercent() {
return progressPercent_;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
* @return Whether the config field is set.
*/
@java.lang.Override
public boolean hasConfig() {
return config_ != null;
}
Expand All @@ -168,6 +169,7 @@ public boolean hasConfig() {
*
* @return The config.
*/
@java.lang.Override
public com.google.cloud.speech.v1.RecognitionConfig getConfig() {
return config_ == null
? com.google.cloud.speech.v1.RecognitionConfig.getDefaultInstance()
Expand All @@ -185,6 +187,7 @@ public com.google.cloud.speech.v1.RecognitionConfig getConfig() {
* .google.cloud.speech.v1.RecognitionConfig config = 1 [(.google.api.field_behavior) = REQUIRED];
* </code>
*/
@java.lang.Override
public com.google.cloud.speech.v1.RecognitionConfigOrBuilder getConfigOrBuilder() {
return getConfig();
}
Expand All @@ -204,6 +207,7 @@ public com.google.cloud.speech.v1.RecognitionConfigOrBuilder getConfigOrBuilder(
*
* @return Whether the audio field is set.
*/
@java.lang.Override
public boolean hasAudio() {
return audio_ != null;
}
Expand All @@ -220,6 +224,7 @@ public boolean hasAudio() {
*
* @return The audio.
*/
@java.lang.Override
public com.google.cloud.speech.v1.RecognitionAudio getAudio() {
return audio_ == null
? com.google.cloud.speech.v1.RecognitionAudio.getDefaultInstance()
Expand All @@ -236,6 +241,7 @@ public com.google.cloud.speech.v1.RecognitionAudio getAudio() {
* .google.cloud.speech.v1.RecognitionAudio audio = 2 [(.google.api.field_behavior) = REQUIRED];
* </code>
*/
@java.lang.Override
public com.google.cloud.speech.v1.RecognitionAudioOrBuilder getAudioOrBuilder() {
return getAudio();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
* <code>repeated .google.cloud.speech.v1.SpeechRecognitionResult results = 2;</code>
*/
@java.lang.Override
public java.util.List<com.google.cloud.speech.v1.SpeechRecognitionResult> getResultsList() {
return results_;
}
Expand All @@ -150,6 +151,7 @@ public java.util.List<com.google.cloud.speech.v1.SpeechRecognitionResult> getRes
*
* <code>repeated .google.cloud.speech.v1.SpeechRecognitionResult results = 2;</code>
*/
@java.lang.Override
public java.util.List<? extends com.google.cloud.speech.v1.SpeechRecognitionResultOrBuilder>
getResultsOrBuilderList() {
return results_;
Expand All @@ -164,6 +166,7 @@ public java.util.List<com.google.cloud.speech.v1.SpeechRecognitionResult> getRes
*
* <code>repeated .google.cloud.speech.v1.SpeechRecognitionResult results = 2;</code>
*/
@java.lang.Override
public int getResultsCount() {
return results_.size();
}
Expand All @@ -177,6 +180,7 @@ public int getResultsCount() {
*
* <code>repeated .google.cloud.speech.v1.SpeechRecognitionResult results = 2;</code>
*/
@java.lang.Override
public com.google.cloud.speech.v1.SpeechRecognitionResult getResults(int index) {
return results_.get(index);
}
Expand All @@ -190,6 +194,7 @@ public com.google.cloud.speech.v1.SpeechRecognitionResult getResults(int index)
*
* <code>repeated .google.cloud.speech.v1.SpeechRecognitionResult results = 2;</code>
*/
@java.lang.Override
public com.google.cloud.speech.v1.SpeechRecognitionResultOrBuilder getResultsOrBuilder(
int index) {
return results_.get(index);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public AudioSourceCase getAudioSourceCase() {
*
* @return The content.
*/
@java.lang.Override
public com.google.protobuf.ByteString getContent() {
if (audioSourceCase_ == 1) {
return (com.google.protobuf.ByteString) audioSource_;
Expand Down Expand Up @@ -716,6 +717,7 @@ public Builder clearContent() {
*
* @return The uri.
*/
@java.lang.Override
public java.lang.String getUri() {
java.lang.Object ref = "";
if (audioSourceCase_ == 2) {
Expand Down Expand Up @@ -749,6 +751,7 @@ public java.lang.String getUri() {
*
* @return The bytes for uri.
*/
@java.lang.Override
public com.google.protobuf.ByteString getUriBytes() {
java.lang.Object ref = "";
if (audioSourceCase_ == 2) {
Expand Down
Loading