com.google.cloud.dialogflow.v2.ArticleAnswer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/participant.proto
package com.google.cloud.dialogflow.v2;
/**
*
*
*
* Represents article answer.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.ArticleAnswer}
*/
public final class ArticleAnswer extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.ArticleAnswer)
ArticleAnswerOrBuilder {
private static final long serialVersionUID = 0L;
// Use ArticleAnswer.newBuilder() to construct.
private ArticleAnswer(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ArticleAnswer() {
title_ = "";
uri_ = "";
snippets_ = com.google.protobuf.LazyStringArrayList.EMPTY;
answerRecord_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ArticleAnswer();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private ArticleAnswer(
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:
{
java.lang.String s = input.readStringRequireUtf8();
title_ = s;
break;
}
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
uri_ = s;
break;
}
case 26:
{
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
snippets_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
snippets_.add(s);
break;
}
case 37:
{
confidence_ = input.readFloat();
break;
}
case 42:
{
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
metadata_ =
com.google.protobuf.MapField.newMapField(
MetadataDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000002;
}
com.google.protobuf.MapEntry metadata__ =
input.readMessage(
MetadataDefaultEntryHolder.defaultEntry.getParserForType(),
extensionRegistry);
metadata_.getMutableMap().put(metadata__.getKey(), metadata__.getValue());
break;
}
case 50:
{
java.lang.String s = input.readStringRequireUtf8();
answerRecord_ = s;
break;
}
default:
{
if (!parseUnknownField(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 {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
snippets_ = snippets_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.ParticipantProto
.internal_static_google_cloud_dialogflow_v2_ArticleAnswer_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 5:
return internalGetMetadata();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.ParticipantProto
.internal_static_google_cloud_dialogflow_v2_ArticleAnswer_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.ArticleAnswer.class,
com.google.cloud.dialogflow.v2.ArticleAnswer.Builder.class);
}
public static final int TITLE_FIELD_NUMBER = 1;
private volatile java.lang.Object title_;
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @return The title.
*/
@java.lang.Override
public java.lang.String getTitle() {
java.lang.Object ref = title_;
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();
title_ = s;
return s;
}
}
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @return The bytes for title.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTitleBytes() {
java.lang.Object ref = title_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
title_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int URI_FIELD_NUMBER = 2;
private volatile java.lang.Object uri_;
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @return The uri.
*/
@java.lang.Override
public java.lang.String getUri() {
java.lang.Object ref = uri_;
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();
uri_ = s;
return s;
}
}
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @return The bytes for uri.
*/
@java.lang.Override
public com.google.protobuf.ByteString getUriBytes() {
java.lang.Object ref = uri_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
uri_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SNIPPETS_FIELD_NUMBER = 3;
private com.google.protobuf.LazyStringList snippets_;
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @return A list containing the snippets.
*/
public com.google.protobuf.ProtocolStringList getSnippetsList() {
return snippets_;
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @return The count of snippets.
*/
public int getSnippetsCount() {
return snippets_.size();
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param index The index of the element to return.
* @return The snippets at the given index.
*/
public java.lang.String getSnippets(int index) {
return snippets_.get(index);
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param index The index of the value to return.
* @return The bytes of the snippets at the given index.
*/
public com.google.protobuf.ByteString getSnippetsBytes(int index) {
return snippets_.getByteString(index);
}
public static final int CONFIDENCE_FIELD_NUMBER = 4;
private float confidence_;
/**
*
*
*
* Article match confidence.
* The system's confidence score that this article is a good match for this
* conversation, as a value from 0.0 (completely uncertain) to 1.0
* (completely certain).
*
*
* float confidence = 4;
*
* @return The confidence.
*/
@java.lang.Override
public float getConfidence() {
return confidence_;
}
public static final int METADATA_FIELD_NUMBER = 5;
private static final class MetadataDefaultEntryHolder {
static final com.google.protobuf.MapEntry defaultEntry =
com.google.protobuf.MapEntry.newDefaultInstance(
com.google.cloud.dialogflow.v2.ParticipantProto
.internal_static_google_cloud_dialogflow_v2_ArticleAnswer_MetadataEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
private com.google.protobuf.MapField metadata_;
private com.google.protobuf.MapField internalGetMetadata() {
if (metadata_ == null) {
return com.google.protobuf.MapField.emptyMapField(MetadataDefaultEntryHolder.defaultEntry);
}
return metadata_;
}
public int getMetadataCount() {
return internalGetMetadata().getMap().size();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public boolean containsMetadata(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
return internalGetMetadata().getMap().containsKey(key);
}
/** Use {@link #getMetadataMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getMetadata() {
return getMetadataMap();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public java.util.Map getMetadataMap() {
return internalGetMetadata().getMap();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public java.lang.String getMetadataOrDefault(
java.lang.String key, java.lang.String defaultValue) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetMetadata().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public java.lang.String getMetadataOrThrow(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetMetadata().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int ANSWER_RECORD_FIELD_NUMBER = 6;
private volatile java.lang.Object answerRecord_;
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @return The answerRecord.
*/
@java.lang.Override
public java.lang.String getAnswerRecord() {
java.lang.Object ref = answerRecord_;
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();
answerRecord_ = s;
return s;
}
}
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @return The bytes for answerRecord.
*/
@java.lang.Override
public com.google.protobuf.ByteString getAnswerRecordBytes() {
java.lang.Object ref = answerRecord_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
answerRecord_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (!getTitleBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, title_);
}
if (!getUriBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, uri_);
}
for (int i = 0; i < snippets_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, snippets_.getRaw(i));
}
if (confidence_ != 0F) {
output.writeFloat(4, confidence_);
}
com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
output, internalGetMetadata(), MetadataDefaultEntryHolder.defaultEntry, 5);
if (!getAnswerRecordBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, answerRecord_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getTitleBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, title_);
}
if (!getUriBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, uri_);
}
{
int dataSize = 0;
for (int i = 0; i < snippets_.size(); i++) {
dataSize += computeStringSizeNoTag(snippets_.getRaw(i));
}
size += dataSize;
size += 1 * getSnippetsList().size();
}
if (confidence_ != 0F) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(4, confidence_);
}
for (java.util.Map.Entry entry :
internalGetMetadata().getMap().entrySet()) {
com.google.protobuf.MapEntry metadata__ =
MetadataDefaultEntryHolder.defaultEntry
.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, metadata__);
}
if (!getAnswerRecordBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, answerRecord_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.dialogflow.v2.ArticleAnswer)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.v2.ArticleAnswer other =
(com.google.cloud.dialogflow.v2.ArticleAnswer) obj;
if (!getTitle().equals(other.getTitle())) return false;
if (!getUri().equals(other.getUri())) return false;
if (!getSnippetsList().equals(other.getSnippetsList())) return false;
if (java.lang.Float.floatToIntBits(getConfidence())
!= java.lang.Float.floatToIntBits(other.getConfidence())) return false;
if (!internalGetMetadata().equals(other.internalGetMetadata())) return false;
if (!getAnswerRecord().equals(other.getAnswerRecord())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + TITLE_FIELD_NUMBER;
hash = (53 * hash) + getTitle().hashCode();
hash = (37 * hash) + URI_FIELD_NUMBER;
hash = (53 * hash) + getUri().hashCode();
if (getSnippetsCount() > 0) {
hash = (37 * hash) + SNIPPETS_FIELD_NUMBER;
hash = (53 * hash) + getSnippetsList().hashCode();
}
hash = (37 * hash) + CONFIDENCE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getConfidence());
if (!internalGetMetadata().getMap().isEmpty()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + internalGetMetadata().hashCode();
}
hash = (37 * hash) + ANSWER_RECORD_FIELD_NUMBER;
hash = (53 * hash) + getAnswerRecord().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer 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.dialogflow.v2.ArticleAnswer 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;
}
/**
*
*
*
* Represents article answer.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2.ArticleAnswer}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.ArticleAnswer)
com.google.cloud.dialogflow.v2.ArticleAnswerOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2.ParticipantProto
.internal_static_google_cloud_dialogflow_v2_ArticleAnswer_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 5:
return internalGetMetadata();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(int number) {
switch (number) {
case 5:
return internalGetMutableMetadata();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2.ParticipantProto
.internal_static_google_cloud_dialogflow_v2_ArticleAnswer_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2.ArticleAnswer.class,
com.google.cloud.dialogflow.v2.ArticleAnswer.Builder.class);
}
// Construct using com.google.cloud.dialogflow.v2.ArticleAnswer.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();
title_ = "";
uri_ = "";
snippets_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
confidence_ = 0F;
internalGetMutableMetadata().clear();
answerRecord_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.v2.ParticipantProto
.internal_static_google_cloud_dialogflow_v2_ArticleAnswer_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.ArticleAnswer getDefaultInstanceForType() {
return com.google.cloud.dialogflow.v2.ArticleAnswer.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.ArticleAnswer build() {
com.google.cloud.dialogflow.v2.ArticleAnswer result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2.ArticleAnswer buildPartial() {
com.google.cloud.dialogflow.v2.ArticleAnswer result =
new com.google.cloud.dialogflow.v2.ArticleAnswer(this);
int from_bitField0_ = bitField0_;
result.title_ = title_;
result.uri_ = uri_;
if (((bitField0_ & 0x00000001) != 0)) {
snippets_ = snippets_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.snippets_ = snippets_;
result.confidence_ = confidence_;
result.metadata_ = internalGetMetadata();
result.metadata_.makeImmutable();
result.answerRecord_ = answerRecord_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.dialogflow.v2.ArticleAnswer) {
return mergeFrom((com.google.cloud.dialogflow.v2.ArticleAnswer) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.v2.ArticleAnswer other) {
if (other == com.google.cloud.dialogflow.v2.ArticleAnswer.getDefaultInstance()) return this;
if (!other.getTitle().isEmpty()) {
title_ = other.title_;
onChanged();
}
if (!other.getUri().isEmpty()) {
uri_ = other.uri_;
onChanged();
}
if (!other.snippets_.isEmpty()) {
if (snippets_.isEmpty()) {
snippets_ = other.snippets_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureSnippetsIsMutable();
snippets_.addAll(other.snippets_);
}
onChanged();
}
if (other.getConfidence() != 0F) {
setConfidence(other.getConfidence());
}
internalGetMutableMetadata().mergeFrom(other.internalGetMetadata());
if (!other.getAnswerRecord().isEmpty()) {
answerRecord_ = other.answerRecord_;
onChanged();
}
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.dialogflow.v2.ArticleAnswer parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.cloud.dialogflow.v2.ArticleAnswer) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object title_ = "";
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @return The title.
*/
public java.lang.String getTitle() {
java.lang.Object ref = title_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
title_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @return The bytes for title.
*/
public com.google.protobuf.ByteString getTitleBytes() {
java.lang.Object ref = title_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
title_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @param value The title to set.
* @return This builder for chaining.
*/
public Builder setTitle(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
title_ = value;
onChanged();
return this;
}
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @return This builder for chaining.
*/
public Builder clearTitle() {
title_ = getDefaultInstance().getTitle();
onChanged();
return this;
}
/**
*
*
*
* The article title.
*
*
* string title = 1;
*
* @param value The bytes for title to set.
* @return This builder for chaining.
*/
public Builder setTitleBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
title_ = value;
onChanged();
return this;
}
private java.lang.Object uri_ = "";
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @return The uri.
*/
public java.lang.String getUri() {
java.lang.Object ref = uri_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
uri_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @return The bytes for uri.
*/
public com.google.protobuf.ByteString getUriBytes() {
java.lang.Object ref = uri_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
uri_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @param value The uri to set.
* @return This builder for chaining.
*/
public Builder setUri(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
uri_ = value;
onChanged();
return this;
}
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @return This builder for chaining.
*/
public Builder clearUri() {
uri_ = getDefaultInstance().getUri();
onChanged();
return this;
}
/**
*
*
*
* The article URI.
*
*
* string uri = 2;
*
* @param value The bytes for uri to set.
* @return This builder for chaining.
*/
public Builder setUriBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
uri_ = value;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList snippets_ =
com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureSnippetsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
snippets_ = new com.google.protobuf.LazyStringArrayList(snippets_);
bitField0_ |= 0x00000001;
}
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @return A list containing the snippets.
*/
public com.google.protobuf.ProtocolStringList getSnippetsList() {
return snippets_.getUnmodifiableView();
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @return The count of snippets.
*/
public int getSnippetsCount() {
return snippets_.size();
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param index The index of the element to return.
* @return The snippets at the given index.
*/
public java.lang.String getSnippets(int index) {
return snippets_.get(index);
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param index The index of the value to return.
* @return The bytes of the snippets at the given index.
*/
public com.google.protobuf.ByteString getSnippetsBytes(int index) {
return snippets_.getByteString(index);
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param index The index to set the value at.
* @param value The snippets to set.
* @return This builder for chaining.
*/
public Builder setSnippets(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureSnippetsIsMutable();
snippets_.set(index, value);
onChanged();
return this;
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param value The snippets to add.
* @return This builder for chaining.
*/
public Builder addSnippets(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureSnippetsIsMutable();
snippets_.add(value);
onChanged();
return this;
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param values The snippets to add.
* @return This builder for chaining.
*/
public Builder addAllSnippets(java.lang.Iterable values) {
ensureSnippetsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, snippets_);
onChanged();
return this;
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @return This builder for chaining.
*/
public Builder clearSnippets() {
snippets_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Article snippets.
*
*
* repeated string snippets = 3;
*
* @param value The bytes of the snippets to add.
* @return This builder for chaining.
*/
public Builder addSnippetsBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureSnippetsIsMutable();
snippets_.add(value);
onChanged();
return this;
}
private float confidence_;
/**
*
*
*
* Article match confidence.
* The system's confidence score that this article is a good match for this
* conversation, as a value from 0.0 (completely uncertain) to 1.0
* (completely certain).
*
*
* float confidence = 4;
*
* @return The confidence.
*/
@java.lang.Override
public float getConfidence() {
return confidence_;
}
/**
*
*
*
* Article match confidence.
* The system's confidence score that this article is a good match for this
* conversation, as a value from 0.0 (completely uncertain) to 1.0
* (completely certain).
*
*
* float confidence = 4;
*
* @param value The confidence to set.
* @return This builder for chaining.
*/
public Builder setConfidence(float value) {
confidence_ = value;
onChanged();
return this;
}
/**
*
*
*
* Article match confidence.
* The system's confidence score that this article is a good match for this
* conversation, as a value from 0.0 (completely uncertain) to 1.0
* (completely certain).
*
*
* float confidence = 4;
*
* @return This builder for chaining.
*/
public Builder clearConfidence() {
confidence_ = 0F;
onChanged();
return this;
}
private com.google.protobuf.MapField metadata_;
private com.google.protobuf.MapField internalGetMetadata() {
if (metadata_ == null) {
return com.google.protobuf.MapField.emptyMapField(MetadataDefaultEntryHolder.defaultEntry);
}
return metadata_;
}
private com.google.protobuf.MapField
internalGetMutableMetadata() {
onChanged();
;
if (metadata_ == null) {
metadata_ =
com.google.protobuf.MapField.newMapField(MetadataDefaultEntryHolder.defaultEntry);
}
if (!metadata_.isMutable()) {
metadata_ = metadata_.copy();
}
return metadata_;
}
public int getMetadataCount() {
return internalGetMetadata().getMap().size();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public boolean containsMetadata(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
return internalGetMetadata().getMap().containsKey(key);
}
/** Use {@link #getMetadataMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getMetadata() {
return getMetadataMap();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public java.util.Map getMetadataMap() {
return internalGetMetadata().getMap();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public java.lang.String getMetadataOrDefault(
java.lang.String key, java.lang.String defaultValue) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetMetadata().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
@java.lang.Override
public java.lang.String getMetadataOrThrow(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetMetadata().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearMetadata() {
internalGetMutableMetadata().getMutableMap().clear();
return this;
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
public Builder removeMetadata(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
internalGetMutableMetadata().getMutableMap().remove(key);
return this;
}
/** Use alternate mutation accessors instead. */
@java.lang.Deprecated
public java.util.Map getMutableMetadata() {
return internalGetMutableMetadata().getMutableMap();
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
public Builder putMetadata(java.lang.String key, java.lang.String value) {
if (key == null) {
throw new java.lang.NullPointerException();
}
if (value == null) {
throw new java.lang.NullPointerException();
}
internalGetMutableMetadata().getMutableMap().put(key, value);
return this;
}
/**
*
*
*
* A map that contains metadata about the answer and the
* document from which it originates.
*
*
* map<string, string> metadata = 5;
*/
public Builder putAllMetadata(java.util.Map values) {
internalGetMutableMetadata().getMutableMap().putAll(values);
return this;
}
private java.lang.Object answerRecord_ = "";
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @return The answerRecord.
*/
public java.lang.String getAnswerRecord() {
java.lang.Object ref = answerRecord_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
answerRecord_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @return The bytes for answerRecord.
*/
public com.google.protobuf.ByteString getAnswerRecordBytes() {
java.lang.Object ref = answerRecord_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
answerRecord_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @param value The answerRecord to set.
* @return This builder for chaining.
*/
public Builder setAnswerRecord(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
answerRecord_ = value;
onChanged();
return this;
}
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @return This builder for chaining.
*/
public Builder clearAnswerRecord() {
answerRecord_ = getDefaultInstance().getAnswerRecord();
onChanged();
return this;
}
/**
*
*
*
* The name of answer record, in the format of
* "projects/<Project ID>/locations/<Location ID>/answerRecords/<Answer Record
* ID>"
*
*
* string answer_record = 6;
*
* @param value The bytes for answerRecord to set.
* @return This builder for chaining.
*/
public Builder setAnswerRecordBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
answerRecord_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(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.dialogflow.v2.ArticleAnswer)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.ArticleAnswer)
private static final com.google.cloud.dialogflow.v2.ArticleAnswer DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.ArticleAnswer();
}
public static com.google.cloud.dialogflow.v2.ArticleAnswer getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ArticleAnswer parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ArticleAnswer(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.dialogflow.v2.ArticleAnswer getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy