com.google.cloud.dialogflow.v2beta1.IntentSuggestion 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-v2beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2beta1
/*
* Copyright 2024 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/v2beta1/participant.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.v2beta1;
/**
*
*
*
* Represents an intent suggestion.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2beta1.IntentSuggestion}
*/
public final class IntentSuggestion extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2beta1.IntentSuggestion)
IntentSuggestionOrBuilder {
private static final long serialVersionUID = 0L;
// Use IntentSuggestion.newBuilder() to construct.
private IntentSuggestion(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private IntentSuggestion() {
displayName_ = "";
description_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new IntentSuggestion();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2beta1.ParticipantProto
.internal_static_google_cloud_dialogflow_v2beta1_IntentSuggestion_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2beta1.ParticipantProto
.internal_static_google_cloud_dialogflow_v2beta1_IntentSuggestion_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2beta1.IntentSuggestion.class,
com.google.cloud.dialogflow.v2beta1.IntentSuggestion.Builder.class);
}
private int intentCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object intent_;
public enum IntentCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
INTENT_V2(2),
INTENT_NOT_SET(0);
private final int value;
private IntentCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static IntentCase valueOf(int value) {
return forNumber(value);
}
public static IntentCase forNumber(int value) {
switch (value) {
case 2:
return INTENT_V2;
case 0:
return INTENT_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public IntentCase getIntentCase() {
return IntentCase.forNumber(intentCase_);
}
public static final int DISPLAY_NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object displayName_ = "";
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @return The displayName.
*/
@java.lang.Override
public java.lang.String getDisplayName() {
java.lang.Object ref = displayName_;
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();
displayName_ = s;
return s;
}
}
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @return The bytes for displayName.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDisplayNameBytes() {
java.lang.Object ref = displayName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
displayName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int INTENT_V2_FIELD_NUMBER = 2;
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return Whether the intentV2 field is set.
*/
public boolean hasIntentV2() {
return intentCase_ == 2;
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return The intentV2.
*/
public java.lang.String getIntentV2() {
java.lang.Object ref = "";
if (intentCase_ == 2) {
ref = intent_;
}
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();
if (intentCase_ == 2) {
intent_ = s;
}
return s;
}
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return The bytes for intentV2.
*/
public com.google.protobuf.ByteString getIntentV2Bytes() {
java.lang.Object ref = "";
if (intentCase_ == 2) {
ref = intent_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (intentCase_ == 2) {
intent_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DESCRIPTION_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private volatile java.lang.Object description_ = "";
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @return The description.
*/
@java.lang.Override
public java.lang.String getDescription() {
java.lang.Object ref = description_;
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();
description_ = s;
return s;
}
}
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @return The bytes for description.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDescriptionBytes() {
java.lang.Object ref = description_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
description_ = 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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(displayName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, displayName_);
}
if (intentCase_ == 2) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, intent_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(description_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, description_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(displayName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, displayName_);
}
if (intentCase_ == 2) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, intent_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(description_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, description_);
}
size += getUnknownFields().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.v2beta1.IntentSuggestion)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.v2beta1.IntentSuggestion other =
(com.google.cloud.dialogflow.v2beta1.IntentSuggestion) obj;
if (!getDisplayName().equals(other.getDisplayName())) return false;
if (!getDescription().equals(other.getDescription())) return false;
if (!getIntentCase().equals(other.getIntentCase())) return false;
switch (intentCase_) {
case 2:
if (!getIntentV2().equals(other.getIntentV2())) return false;
break;
case 0:
default:
}
if (!getUnknownFields().equals(other.getUnknownFields())) 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) + DISPLAY_NAME_FIELD_NUMBER;
hash = (53 * hash) + getDisplayName().hashCode();
hash = (37 * hash) + DESCRIPTION_FIELD_NUMBER;
hash = (53 * hash) + getDescription().hashCode();
switch (intentCase_) {
case 2:
hash = (37 * hash) + INTENT_V2_FIELD_NUMBER;
hash = (53 * hash) + getIntentV2().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion 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.v2beta1.IntentSuggestion parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion 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.v2beta1.IntentSuggestion parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion 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.v2beta1.IntentSuggestion parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion 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.v2beta1.IntentSuggestion parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion 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.v2beta1.IntentSuggestion 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 an intent suggestion.
*
*
* Protobuf type {@code google.cloud.dialogflow.v2beta1.IntentSuggestion}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2beta1.IntentSuggestion)
com.google.cloud.dialogflow.v2beta1.IntentSuggestionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.v2beta1.ParticipantProto
.internal_static_google_cloud_dialogflow_v2beta1_IntentSuggestion_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.v2beta1.ParticipantProto
.internal_static_google_cloud_dialogflow_v2beta1_IntentSuggestion_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.v2beta1.IntentSuggestion.class,
com.google.cloud.dialogflow.v2beta1.IntentSuggestion.Builder.class);
}
// Construct using com.google.cloud.dialogflow.v2beta1.IntentSuggestion.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
displayName_ = "";
description_ = "";
intentCase_ = 0;
intent_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.v2beta1.ParticipantProto
.internal_static_google_cloud_dialogflow_v2beta1_IntentSuggestion_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.IntentSuggestion getDefaultInstanceForType() {
return com.google.cloud.dialogflow.v2beta1.IntentSuggestion.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.IntentSuggestion build() {
com.google.cloud.dialogflow.v2beta1.IntentSuggestion result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.v2beta1.IntentSuggestion buildPartial() {
com.google.cloud.dialogflow.v2beta1.IntentSuggestion result =
new com.google.cloud.dialogflow.v2beta1.IntentSuggestion(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dialogflow.v2beta1.IntentSuggestion result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.displayName_ = displayName_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.description_ = description_;
}
}
private void buildPartialOneofs(com.google.cloud.dialogflow.v2beta1.IntentSuggestion result) {
result.intentCase_ = intentCase_;
result.intent_ = this.intent_;
}
@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.v2beta1.IntentSuggestion) {
return mergeFrom((com.google.cloud.dialogflow.v2beta1.IntentSuggestion) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.v2beta1.IntentSuggestion other) {
if (other == com.google.cloud.dialogflow.v2beta1.IntentSuggestion.getDefaultInstance())
return this;
if (!other.getDisplayName().isEmpty()) {
displayName_ = other.displayName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getDescription().isEmpty()) {
description_ = other.description_;
bitField0_ |= 0x00000004;
onChanged();
}
switch (other.getIntentCase()) {
case INTENT_V2:
{
intentCase_ = 2;
intent_ = other.intent_;
onChanged();
break;
}
case INTENT_NOT_SET:
{
break;
}
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
displayName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
intentCase_ = 2;
intent_ = s;
break;
} // case 18
case 42:
{
description_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 42
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int intentCase_ = 0;
private java.lang.Object intent_;
public IntentCase getIntentCase() {
return IntentCase.forNumber(intentCase_);
}
public Builder clearIntent() {
intentCase_ = 0;
intent_ = null;
onChanged();
return this;
}
private int bitField0_;
private java.lang.Object displayName_ = "";
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @return The displayName.
*/
public java.lang.String getDisplayName() {
java.lang.Object ref = displayName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
displayName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @return The bytes for displayName.
*/
public com.google.protobuf.ByteString getDisplayNameBytes() {
java.lang.Object ref = displayName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
displayName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @param value The displayName to set.
* @return This builder for chaining.
*/
public Builder setDisplayName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
displayName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @return This builder for chaining.
*/
public Builder clearDisplayName() {
displayName_ = getDefaultInstance().getDisplayName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* The display name of the intent.
*
*
* string display_name = 1;
*
* @param value The bytes for displayName to set.
* @return This builder for chaining.
*/
public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
displayName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return Whether the intentV2 field is set.
*/
@java.lang.Override
public boolean hasIntentV2() {
return intentCase_ == 2;
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return The intentV2.
*/
@java.lang.Override
public java.lang.String getIntentV2() {
java.lang.Object ref = "";
if (intentCase_ == 2) {
ref = intent_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (intentCase_ == 2) {
intent_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return The bytes for intentV2.
*/
@java.lang.Override
public com.google.protobuf.ByteString getIntentV2Bytes() {
java.lang.Object ref = "";
if (intentCase_ == 2) {
ref = intent_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (intentCase_ == 2) {
intent_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @param value The intentV2 to set.
* @return This builder for chaining.
*/
public Builder setIntentV2(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
intentCase_ = 2;
intent_ = value;
onChanged();
return this;
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @return This builder for chaining.
*/
public Builder clearIntentV2() {
if (intentCase_ == 2) {
intentCase_ = 0;
intent_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* The unique identifier of this
* [intent][google.cloud.dialogflow.v2beta1.Intent]. Format:
* `projects/<Project ID>/locations/<Location ID>/agent/intents/<Intent
* ID>`.
*
*
* string intent_v2 = 2;
*
* @param value The bytes for intentV2 to set.
* @return This builder for chaining.
*/
public Builder setIntentV2Bytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
intentCase_ = 2;
intent_ = value;
onChanged();
return this;
}
private java.lang.Object description_ = "";
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @return The description.
*/
public java.lang.String getDescription() {
java.lang.Object ref = description_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
description_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @return The bytes for description.
*/
public com.google.protobuf.ByteString getDescriptionBytes() {
java.lang.Object ref = description_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
description_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @param value The description to set.
* @return This builder for chaining.
*/
public Builder setDescription(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
description_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @return This builder for chaining.
*/
public Builder clearDescription() {
description_ = getDefaultInstance().getDescription();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
*
*
* Human readable description for better understanding an intent like its
* scope, content, result etc. Maximum character limit: 140 characters.
*
*
* string description = 5;
*
* @param value The bytes for description to set.
* @return This builder for chaining.
*/
public Builder setDescriptionBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
description_ = value;
bitField0_ |= 0x00000004;
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.v2beta1.IntentSuggestion)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2beta1.IntentSuggestion)
private static final com.google.cloud.dialogflow.v2beta1.IntentSuggestion DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2beta1.IntentSuggestion();
}
public static com.google.cloud.dialogflow.v2beta1.IntentSuggestion getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public IntentSuggestion parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
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.v2beta1.IntentSuggestion getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}