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_ = "";
confidence_ = 0F;
speakerTag_ = 0;
}
@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;
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;
}
case 37:
{
confidence_ = input.readFloat();
break;
}
case 40:
{
speakerTag_ = input.readInt32();
break;
}
default:
{
if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) {
done = true;
}
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;
}
@java.lang.Override
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;
}
}
public static final int CONFIDENCE_FIELD_NUMBER = 4;
private float confidence_;
/**
*
*
*
* Output only. The confidence estimate between 0.0 and 1.0. A higher number
* indicates an estimated greater likelihood that the recognized words are
* correct. This field is set only for the top alternative of a non-streaming
* result or, of a streaming result where `is_final=true`.
* This field is not guaranteed to be accurate and users should not rely on it
* to be always provided.
* The default of 0.0 is a sentinel value indicating `confidence` was not set.
*
*
* float confidence = 4;
*/
public float getConfidence() {
return confidence_;
}
public static final int SPEAKER_TAG_FIELD_NUMBER = 5;
private int speakerTag_;
/**
*
*
*
* Output only. A distinct integer value is assigned for every speaker within
* the audio. This field specifies which one of those speakers was detected to
* have spoken this word. Value ranges from '1' to diarization_speaker_count.
* speaker_tag is set if enable_speaker_diarization = 'true' and only in the
* top alternative.
*
*
* int32 speaker_tag = 5;
*/
public int getSpeakerTag() {
return speakerTag_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
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_);
}
if (confidence_ != 0F) {
output.writeFloat(4, confidence_);
}
if (speakerTag_ != 0) {
output.writeInt32(5, speakerTag_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
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_);
}
if (confidence_ != 0F) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(4, confidence_);
}
if (speakerTag_ != 0) {
size += com.google.protobuf.CodedOutputStream.computeInt32Size(5, speakerTag_);
}
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
&& (java.lang.Float.floatToIntBits(getConfidence())
== java.lang.Float.floatToIntBits(other.getConfidence()));
result = result && (getSpeakerTag() == other.getSpeakerTag());
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 = (37 * hash) + CONFIDENCE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getConfidence());
hash = (37 * hash) + SPEAKER_TAG_FIELD_NUMBER;
hash = (53 * hash) + getSpeakerTag();
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);
}
@java.lang.Override
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);
}
@java.lang.Override
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;
}
@java.lang.Override
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) {}
}
@java.lang.Override
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_ = "";
confidence_ = 0F;
speakerTag_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.speech.v1p1beta1.SpeechProto
.internal_static_google_cloud_speech_v1p1beta1_WordInfo_descriptor;
}
@java.lang.Override
public com.google.cloud.speech.v1p1beta1.WordInfo getDefaultInstanceForType() {
return com.google.cloud.speech.v1p1beta1.WordInfo.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.speech.v1p1beta1.WordInfo build() {
com.google.cloud.speech.v1p1beta1.WordInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
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_;
result.confidence_ = confidence_;
result.speakerTag_ = speakerTag_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
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();
}
if (other.getConfidence() != 0F) {
setConfidence(other.getConfidence());
}
if (other.getSpeakerTag() != 0) {
setSpeakerTag(other.getSpeakerTag());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
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;
}
private float confidence_;
/**
*
*
*
* Output only. The confidence estimate between 0.0 and 1.0. A higher number
* indicates an estimated greater likelihood that the recognized words are
* correct. This field is set only for the top alternative of a non-streaming
* result or, of a streaming result where `is_final=true`.
* This field is not guaranteed to be accurate and users should not rely on it
* to be always provided.
* The default of 0.0 is a sentinel value indicating `confidence` was not set.
*
*
* float confidence = 4;
*/
public float getConfidence() {
return confidence_;
}
/**
*
*
*
* Output only. The confidence estimate between 0.0 and 1.0. A higher number
* indicates an estimated greater likelihood that the recognized words are
* correct. This field is set only for the top alternative of a non-streaming
* result or, of a streaming result where `is_final=true`.
* This field is not guaranteed to be accurate and users should not rely on it
* to be always provided.
* The default of 0.0 is a sentinel value indicating `confidence` was not set.
*
*
* float confidence = 4;
*/
public Builder setConfidence(float value) {
confidence_ = value;
onChanged();
return this;
}
/**
*
*
*
* Output only. The confidence estimate between 0.0 and 1.0. A higher number
* indicates an estimated greater likelihood that the recognized words are
* correct. This field is set only for the top alternative of a non-streaming
* result or, of a streaming result where `is_final=true`.
* This field is not guaranteed to be accurate and users should not rely on it
* to be always provided.
* The default of 0.0 is a sentinel value indicating `confidence` was not set.
*
*
* float confidence = 4;
*/
public Builder clearConfidence() {
confidence_ = 0F;
onChanged();
return this;
}
private int speakerTag_;
/**
*
*
*
* Output only. A distinct integer value is assigned for every speaker within
* the audio. This field specifies which one of those speakers was detected to
* have spoken this word. Value ranges from '1' to diarization_speaker_count.
* speaker_tag is set if enable_speaker_diarization = 'true' and only in the
* top alternative.
*
*
* int32 speaker_tag = 5;
*/
public int getSpeakerTag() {
return speakerTag_;
}
/**
*
*
*
* Output only. A distinct integer value is assigned for every speaker within
* the audio. This field specifies which one of those speakers was detected to
* have spoken this word. Value ranges from '1' to diarization_speaker_count.
* speaker_tag is set if enable_speaker_diarization = 'true' and only in the
* top alternative.
*
*
* int32 speaker_tag = 5;
*/
public Builder setSpeakerTag(int value) {
speakerTag_ = value;
onChanged();
return this;
}
/**
*
*
*
* Output only. A distinct integer value is assigned for every speaker within
* the audio. This field specifies which one of those speakers was detected to
* have spoken this word. Value ranges from '1' to diarization_speaker_count.
* speaker_tag is set if enable_speaker_diarization = 'true' and only in the
* top alternative.
*
*
* int32 speaker_tag = 5;
*/
public Builder clearSpeakerTag() {
speakerTag_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
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() {
@java.lang.Override
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;
}
@java.lang.Override
public com.google.cloud.speech.v1p1beta1.WordInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}