com.google.cloud.speech.v1p1beta1.WordInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-speech-v1p1beta1 Show documentation
Show all versions of proto-google-cloud-speech-v1p1beta1 Show documentation
PROTO library for proto-google-cloud-speech-v1p1beta1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/speech/v1p1beta1/cloud_speech.proto
package com.google.cloud.speech.v1p1beta1;
/**
*
* Word-specific information for recognized words.
*
*
* Protobuf type {@code google.cloud.speech.v1p1beta1.WordInfo}
*/
public final class WordInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.cloud.speech.v1p1beta1.WordInfo)
WordInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use WordInfo.newBuilder() to construct.
private WordInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private WordInfo() {
word_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private WordInfo(
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 10: {
com.google.protobuf.Duration.Builder subBuilder = null;
if (startTime_ != null) {
subBuilder = startTime_.toBuilder();
}
startTime_ = input.readMessage(com.google.protobuf.Duration.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(startTime_);
startTime_ = subBuilder.buildPartial();
}
break;
}
case 18: {
com.google.protobuf.Duration.Builder subBuilder = null;
if (endTime_ != null) {
subBuilder = endTime_.toBuilder();
}
endTime_ = input.readMessage(com.google.protobuf.Duration.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(endTime_);
endTime_ = subBuilder.buildPartial();
}
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
word_ = 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 {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.speech.v1p1beta1.SpeechProto.internal_static_google_cloud_speech_v1p1beta1_WordInfo_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.speech.v1p1beta1.SpeechProto.internal_static_google_cloud_speech_v1p1beta1_WordInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.speech.v1p1beta1.WordInfo.class, com.google.cloud.speech.v1p1beta1.WordInfo.Builder.class);
}
public static final int START_TIME_FIELD_NUMBER = 1;
private com.google.protobuf.Duration startTime_;
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public boolean hasStartTime() {
return startTime_ != null;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public com.google.protobuf.Duration getStartTime() {
return startTime_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startTime_;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public com.google.protobuf.DurationOrBuilder getStartTimeOrBuilder() {
return getStartTime();
}
public static final int END_TIME_FIELD_NUMBER = 2;
private com.google.protobuf.Duration endTime_;
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public boolean hasEndTime() {
return endTime_ != null;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public com.google.protobuf.Duration getEndTime() {
return endTime_ == null ? com.google.protobuf.Duration.getDefaultInstance() : endTime_;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public com.google.protobuf.DurationOrBuilder getEndTimeOrBuilder() {
return getEndTime();
}
public static final int WORD_FIELD_NUMBER = 3;
private volatile java.lang.Object word_;
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public java.lang.String getWord() {
java.lang.Object ref = word_;
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();
word_ = s;
return s;
}
}
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public com.google.protobuf.ByteString
getWordBytes() {
java.lang.Object ref = word_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
word_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (startTime_ != null) {
output.writeMessage(1, getStartTime());
}
if (endTime_ != null) {
output.writeMessage(2, getEndTime());
}
if (!getWordBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, word_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (startTime_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getStartTime());
}
if (endTime_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getEndTime());
}
if (!getWordBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, word_);
}
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.speech.v1p1beta1.WordInfo)) {
return super.equals(obj);
}
com.google.cloud.speech.v1p1beta1.WordInfo other = (com.google.cloud.speech.v1p1beta1.WordInfo) obj;
boolean result = true;
result = result && (hasStartTime() == other.hasStartTime());
if (hasStartTime()) {
result = result && getStartTime()
.equals(other.getStartTime());
}
result = result && (hasEndTime() == other.hasEndTime());
if (hasEndTime()) {
result = result && getEndTime()
.equals(other.getEndTime());
}
result = result && getWord()
.equals(other.getWord());
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();
if (hasStartTime()) {
hash = (37 * hash) + START_TIME_FIELD_NUMBER;
hash = (53 * hash) + getStartTime().hashCode();
}
if (hasEndTime()) {
hash = (37 * hash) + END_TIME_FIELD_NUMBER;
hash = (53 * hash) + getEndTime().hashCode();
}
hash = (37 * hash) + WORD_FIELD_NUMBER;
hash = (53 * hash) + getWord().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.speech.v1p1beta1.WordInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo 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.speech.v1p1beta1.WordInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo 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.v1p1beta1.WordInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo 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.v1p1beta1.WordInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo 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.v1p1beta1.WordInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.speech.v1p1beta1.WordInfo 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.v1p1beta1.WordInfo 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;
}
/**
*
* Word-specific information for recognized words.
*
*
* Protobuf type {@code google.cloud.speech.v1p1beta1.WordInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.cloud.speech.v1p1beta1.WordInfo)
com.google.cloud.speech.v1p1beta1.WordInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.speech.v1p1beta1.SpeechProto.internal_static_google_cloud_speech_v1p1beta1_WordInfo_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.speech.v1p1beta1.SpeechProto.internal_static_google_cloud_speech_v1p1beta1_WordInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.speech.v1p1beta1.WordInfo.class, com.google.cloud.speech.v1p1beta1.WordInfo.Builder.class);
}
// Construct using com.google.cloud.speech.v1p1beta1.WordInfo.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 (startTimeBuilder_ == null) {
startTime_ = null;
} else {
startTime_ = null;
startTimeBuilder_ = null;
}
if (endTimeBuilder_ == null) {
endTime_ = null;
} else {
endTime_ = null;
endTimeBuilder_ = null;
}
word_ = "";
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.cloud.speech.v1p1beta1.SpeechProto.internal_static_google_cloud_speech_v1p1beta1_WordInfo_descriptor;
}
public com.google.cloud.speech.v1p1beta1.WordInfo getDefaultInstanceForType() {
return com.google.cloud.speech.v1p1beta1.WordInfo.getDefaultInstance();
}
public com.google.cloud.speech.v1p1beta1.WordInfo build() {
com.google.cloud.speech.v1p1beta1.WordInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.cloud.speech.v1p1beta1.WordInfo buildPartial() {
com.google.cloud.speech.v1p1beta1.WordInfo result = new com.google.cloud.speech.v1p1beta1.WordInfo(this);
if (startTimeBuilder_ == null) {
result.startTime_ = startTime_;
} else {
result.startTime_ = startTimeBuilder_.build();
}
if (endTimeBuilder_ == null) {
result.endTime_ = endTime_;
} else {
result.endTime_ = endTimeBuilder_.build();
}
result.word_ = word_;
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.speech.v1p1beta1.WordInfo) {
return mergeFrom((com.google.cloud.speech.v1p1beta1.WordInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.speech.v1p1beta1.WordInfo other) {
if (other == com.google.cloud.speech.v1p1beta1.WordInfo.getDefaultInstance()) return this;
if (other.hasStartTime()) {
mergeStartTime(other.getStartTime());
}
if (other.hasEndTime()) {
mergeEndTime(other.getEndTime());
}
if (!other.getWord().isEmpty()) {
word_ = other.word_;
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.speech.v1p1beta1.WordInfo parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.cloud.speech.v1p1beta1.WordInfo) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.google.protobuf.Duration startTime_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> startTimeBuilder_;
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public boolean hasStartTime() {
return startTimeBuilder_ != null || startTime_ != null;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public com.google.protobuf.Duration getStartTime() {
if (startTimeBuilder_ == null) {
return startTime_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startTime_;
} else {
return startTimeBuilder_.getMessage();
}
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public Builder setStartTime(com.google.protobuf.Duration value) {
if (startTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
startTime_ = value;
onChanged();
} else {
startTimeBuilder_.setMessage(value);
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public Builder setStartTime(
com.google.protobuf.Duration.Builder builderForValue) {
if (startTimeBuilder_ == null) {
startTime_ = builderForValue.build();
onChanged();
} else {
startTimeBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public Builder mergeStartTime(com.google.protobuf.Duration value) {
if (startTimeBuilder_ == null) {
if (startTime_ != null) {
startTime_ =
com.google.protobuf.Duration.newBuilder(startTime_).mergeFrom(value).buildPartial();
} else {
startTime_ = value;
}
onChanged();
} else {
startTimeBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public Builder clearStartTime() {
if (startTimeBuilder_ == null) {
startTime_ = null;
onChanged();
} else {
startTime_ = null;
startTimeBuilder_ = null;
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public com.google.protobuf.Duration.Builder getStartTimeBuilder() {
onChanged();
return getStartTimeFieldBuilder().getBuilder();
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
public com.google.protobuf.DurationOrBuilder getStartTimeOrBuilder() {
if (startTimeBuilder_ != null) {
return startTimeBuilder_.getMessageOrBuilder();
} else {
return startTime_ == null ?
com.google.protobuf.Duration.getDefaultInstance() : startTime_;
}
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the start of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration start_time = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>
getStartTimeFieldBuilder() {
if (startTimeBuilder_ == null) {
startTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
getStartTime(),
getParentForChildren(),
isClean());
startTime_ = null;
}
return startTimeBuilder_;
}
private com.google.protobuf.Duration endTime_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> endTimeBuilder_;
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public boolean hasEndTime() {
return endTimeBuilder_ != null || endTime_ != null;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public com.google.protobuf.Duration getEndTime() {
if (endTimeBuilder_ == null) {
return endTime_ == null ? com.google.protobuf.Duration.getDefaultInstance() : endTime_;
} else {
return endTimeBuilder_.getMessage();
}
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public Builder setEndTime(com.google.protobuf.Duration value) {
if (endTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
endTime_ = value;
onChanged();
} else {
endTimeBuilder_.setMessage(value);
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public Builder setEndTime(
com.google.protobuf.Duration.Builder builderForValue) {
if (endTimeBuilder_ == null) {
endTime_ = builderForValue.build();
onChanged();
} else {
endTimeBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public Builder mergeEndTime(com.google.protobuf.Duration value) {
if (endTimeBuilder_ == null) {
if (endTime_ != null) {
endTime_ =
com.google.protobuf.Duration.newBuilder(endTime_).mergeFrom(value).buildPartial();
} else {
endTime_ = value;
}
onChanged();
} else {
endTimeBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public Builder clearEndTime() {
if (endTimeBuilder_ == null) {
endTime_ = null;
onChanged();
} else {
endTime_ = null;
endTimeBuilder_ = null;
}
return this;
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public com.google.protobuf.Duration.Builder getEndTimeBuilder() {
onChanged();
return getEndTimeFieldBuilder().getBuilder();
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
public com.google.protobuf.DurationOrBuilder getEndTimeOrBuilder() {
if (endTimeBuilder_ != null) {
return endTimeBuilder_.getMessageOrBuilder();
} else {
return endTime_ == null ?
com.google.protobuf.Duration.getDefaultInstance() : endTime_;
}
}
/**
*
* Output only. Time offset relative to the beginning of the audio,
* and corresponding to the end of the spoken word.
* This field is only set if `enable_word_time_offsets=true` and only
* in the top hypothesis.
* This is an experimental feature and the accuracy of the time offset can
* vary.
*
*
* .google.protobuf.Duration end_time = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>
getEndTimeFieldBuilder() {
if (endTimeBuilder_ == null) {
endTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>(
getEndTime(),
getParentForChildren(),
isClean());
endTime_ = null;
}
return endTimeBuilder_;
}
private java.lang.Object word_ = "";
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public java.lang.String getWord() {
java.lang.Object ref = word_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
word_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public com.google.protobuf.ByteString
getWordBytes() {
java.lang.Object ref = word_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
word_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public Builder setWord(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
word_ = value;
onChanged();
return this;
}
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public Builder clearWord() {
word_ = getDefaultInstance().getWord();
onChanged();
return this;
}
/**
*
* Output only. The word corresponding to this set of information.
*
*
* string word = 3;
*/
public Builder setWordBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
word_ = 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.speech.v1p1beta1.WordInfo)
}
// @@protoc_insertion_point(class_scope:google.cloud.speech.v1p1beta1.WordInfo)
private static final com.google.cloud.speech.v1p1beta1.WordInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.speech.v1p1beta1.WordInfo();
}
public static com.google.cloud.speech.v1p1beta1.WordInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public WordInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new WordInfo(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.v1p1beta1.WordInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}