com.google.cloud.dialogflow.cx.v3beta1.Match 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-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
The newest version!
/*
* 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/cx/v3beta1/session.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
/**
*
*
*
* Represents one match result of [MatchIntent][].
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.Match}
*/
public final class Match extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.Match)
MatchOrBuilder {
private static final long serialVersionUID = 0L;
// Use Match.newBuilder() to construct.
private Match(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Match() {
event_ = "";
resolvedInput_ = "";
matchType_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Match();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.SessionProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Match_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.SessionProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Match_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.Match.class,
com.google.cloud.dialogflow.cx.v3beta1.Match.Builder.class);
}
/**
*
*
*
* Type of a Match.
*
*
* Protobuf enum {@code google.cloud.dialogflow.cx.v3beta1.Match.MatchType}
*/
public enum MatchType implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* Not specified. Should never be used.
*
*
* MATCH_TYPE_UNSPECIFIED = 0;
*/
MATCH_TYPE_UNSPECIFIED(0),
/**
*
*
*
* The query was matched to an intent.
*
*
* INTENT = 1;
*/
INTENT(1),
/**
*
*
*
* The query directly triggered an intent.
*
*
* DIRECT_INTENT = 2;
*/
DIRECT_INTENT(2),
/**
*
*
*
* The query was used for parameter filling.
*
*
* PARAMETER_FILLING = 3;
*/
PARAMETER_FILLING(3),
/**
*
*
*
* No match was found for the query.
*
*
* NO_MATCH = 4;
*/
NO_MATCH(4),
/**
*
*
*
* Indicates an empty query.
*
*
* NO_INPUT = 5;
*/
NO_INPUT(5),
/**
*
*
*
* The query directly triggered an event.
*
*
* EVENT = 6;
*/
EVENT(6),
/**
*
*
*
* The query was matched to a Knowledge Connector answer.
*
*
* KNOWLEDGE_CONNECTOR = 8;
*/
KNOWLEDGE_CONNECTOR(8),
/**
*
*
*
* The query was handled by a
* [`Playbook`][google.cloud.dialogflow.cx.v3beta1.Playbook].
*
*
* PLAYBOOK = 9;
*/
PLAYBOOK(9),
UNRECOGNIZED(-1),
;
/**
*
*
*
* Not specified. Should never be used.
*
*
* MATCH_TYPE_UNSPECIFIED = 0;
*/
public static final int MATCH_TYPE_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* The query was matched to an intent.
*
*
* INTENT = 1;
*/
public static final int INTENT_VALUE = 1;
/**
*
*
*
* The query directly triggered an intent.
*
*
* DIRECT_INTENT = 2;
*/
public static final int DIRECT_INTENT_VALUE = 2;
/**
*
*
*
* The query was used for parameter filling.
*
*
* PARAMETER_FILLING = 3;
*/
public static final int PARAMETER_FILLING_VALUE = 3;
/**
*
*
*
* No match was found for the query.
*
*
* NO_MATCH = 4;
*/
public static final int NO_MATCH_VALUE = 4;
/**
*
*
*
* Indicates an empty query.
*
*
* NO_INPUT = 5;
*/
public static final int NO_INPUT_VALUE = 5;
/**
*
*
*
* The query directly triggered an event.
*
*
* EVENT = 6;
*/
public static final int EVENT_VALUE = 6;
/**
*
*
*
* The query was matched to a Knowledge Connector answer.
*
*
* KNOWLEDGE_CONNECTOR = 8;
*/
public static final int KNOWLEDGE_CONNECTOR_VALUE = 8;
/**
*
*
*
* The query was handled by a
* [`Playbook`][google.cloud.dialogflow.cx.v3beta1.Playbook].
*
*
* PLAYBOOK = 9;
*/
public static final int PLAYBOOK_VALUE = 9;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static MatchType valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static MatchType forNumber(int value) {
switch (value) {
case 0:
return MATCH_TYPE_UNSPECIFIED;
case 1:
return INTENT;
case 2:
return DIRECT_INTENT;
case 3:
return PARAMETER_FILLING;
case 4:
return NO_MATCH;
case 5:
return NO_INPUT;
case 6:
return EVENT;
case 8:
return KNOWLEDGE_CONNECTOR;
case 9:
return PLAYBOOK;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public MatchType findValueByNumber(int number) {
return MatchType.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.Match.getDescriptor().getEnumTypes().get(0);
}
private static final MatchType[] VALUES = values();
public static MatchType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private MatchType(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.dialogflow.cx.v3beta1.Match.MatchType)
}
private int bitField0_;
public static final int INTENT_FIELD_NUMBER = 1;
private com.google.cloud.dialogflow.cx.v3beta1.Intent intent_;
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*
* @return Whether the intent field is set.
*/
@java.lang.Override
public boolean hasIntent() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*
* @return The intent.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Intent getIntent() {
return intent_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Intent.getDefaultInstance()
: intent_;
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.IntentOrBuilder getIntentOrBuilder() {
return intent_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Intent.getDefaultInstance()
: intent_;
}
public static final int EVENT_FIELD_NUMBER = 6;
@SuppressWarnings("serial")
private volatile java.lang.Object event_ = "";
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @return The event.
*/
@java.lang.Override
public java.lang.String getEvent() {
java.lang.Object ref = event_;
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();
event_ = s;
return s;
}
}
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @return The bytes for event.
*/
@java.lang.Override
public com.google.protobuf.ByteString getEventBytes() {
java.lang.Object ref = event_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
event_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PARAMETERS_FIELD_NUMBER = 2;
private com.google.protobuf.Struct parameters_;
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*
* @return Whether the parameters field is set.
*/
@java.lang.Override
public boolean hasParameters() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*
* @return The parameters.
*/
@java.lang.Override
public com.google.protobuf.Struct getParameters() {
return parameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : parameters_;
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
@java.lang.Override
public com.google.protobuf.StructOrBuilder getParametersOrBuilder() {
return parameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : parameters_;
}
public static final int RESOLVED_INPUT_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object resolvedInput_ = "";
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @return The resolvedInput.
*/
@java.lang.Override
public java.lang.String getResolvedInput() {
java.lang.Object ref = resolvedInput_;
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();
resolvedInput_ = s;
return s;
}
}
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @return The bytes for resolvedInput.
*/
@java.lang.Override
public com.google.protobuf.ByteString getResolvedInputBytes() {
java.lang.Object ref = resolvedInput_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
resolvedInput_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int MATCH_TYPE_FIELD_NUMBER = 4;
private int matchType_ = 0;
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @return The enum numeric value on the wire for matchType.
*/
@java.lang.Override
public int getMatchTypeValue() {
return matchType_;
}
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @return The matchType.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType getMatchType() {
com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType result =
com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType.forNumber(matchType_);
return result == null
? com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType.UNRECOGNIZED
: result;
}
public static final int CONFIDENCE_FIELD_NUMBER = 5;
private float confidence_ = 0F;
/**
*
*
*
* The confidence of this match. Values range from 0.0 (completely uncertain)
* to 1.0 (completely certain).
* This value is for informational purpose only and is only used to help match
* the best intent within the classification threshold. This value may change
* for the same end-user expression at any time due to a model retraining or
* change in implementation.
*
*
* float confidence = 5;
*
* @return The confidence.
*/
@java.lang.Override
public float getConfidence() {
return confidence_;
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getIntent());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(2, getParameters());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resolvedInput_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, resolvedInput_);
}
if (matchType_
!= com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType.MATCH_TYPE_UNSPECIFIED
.getNumber()) {
output.writeEnum(4, matchType_);
}
if (java.lang.Float.floatToRawIntBits(confidence_) != 0) {
output.writeFloat(5, confidence_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(event_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, event_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getIntent());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getParameters());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resolvedInput_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, resolvedInput_);
}
if (matchType_
!= com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType.MATCH_TYPE_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(4, matchType_);
}
if (java.lang.Float.floatToRawIntBits(confidence_) != 0) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(5, confidence_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(event_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, event_);
}
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.cx.v3beta1.Match)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.cx.v3beta1.Match other =
(com.google.cloud.dialogflow.cx.v3beta1.Match) obj;
if (hasIntent() != other.hasIntent()) return false;
if (hasIntent()) {
if (!getIntent().equals(other.getIntent())) return false;
}
if (!getEvent().equals(other.getEvent())) return false;
if (hasParameters() != other.hasParameters()) return false;
if (hasParameters()) {
if (!getParameters().equals(other.getParameters())) return false;
}
if (!getResolvedInput().equals(other.getResolvedInput())) return false;
if (matchType_ != other.matchType_) return false;
if (java.lang.Float.floatToIntBits(getConfidence())
!= java.lang.Float.floatToIntBits(other.getConfidence())) return false;
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();
if (hasIntent()) {
hash = (37 * hash) + INTENT_FIELD_NUMBER;
hash = (53 * hash) + getIntent().hashCode();
}
hash = (37 * hash) + EVENT_FIELD_NUMBER;
hash = (53 * hash) + getEvent().hashCode();
if (hasParameters()) {
hash = (37 * hash) + PARAMETERS_FIELD_NUMBER;
hash = (53 * hash) + getParameters().hashCode();
}
hash = (37 * hash) + RESOLVED_INPUT_FIELD_NUMBER;
hash = (53 * hash) + getResolvedInput().hashCode();
hash = (37 * hash) + MATCH_TYPE_FIELD_NUMBER;
hash = (53 * hash) + matchType_;
hash = (37 * hash) + CONFIDENCE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getConfidence());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match 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.cx.v3beta1.Match parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match 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.cx.v3beta1.Match parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match 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.cx.v3beta1.Match parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match 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.cx.v3beta1.Match parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match 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.cx.v3beta1.Match 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 one match result of [MatchIntent][].
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.Match}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.Match)
com.google.cloud.dialogflow.cx.v3beta1.MatchOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.SessionProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Match_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.SessionProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Match_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.Match.class,
com.google.cloud.dialogflow.cx.v3beta1.Match.Builder.class);
}
// Construct using com.google.cloud.dialogflow.cx.v3beta1.Match.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getIntentFieldBuilder();
getParametersFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
intent_ = null;
if (intentBuilder_ != null) {
intentBuilder_.dispose();
intentBuilder_ = null;
}
event_ = "";
parameters_ = null;
if (parametersBuilder_ != null) {
parametersBuilder_.dispose();
parametersBuilder_ = null;
}
resolvedInput_ = "";
matchType_ = 0;
confidence_ = 0F;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.cx.v3beta1.SessionProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Match_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Match getDefaultInstanceForType() {
return com.google.cloud.dialogflow.cx.v3beta1.Match.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Match build() {
com.google.cloud.dialogflow.cx.v3beta1.Match result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Match buildPartial() {
com.google.cloud.dialogflow.cx.v3beta1.Match result =
new com.google.cloud.dialogflow.cx.v3beta1.Match(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dialogflow.cx.v3beta1.Match result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.intent_ = intentBuilder_ == null ? intent_ : intentBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.event_ = event_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.parameters_ = parametersBuilder_ == null ? parameters_ : parametersBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.resolvedInput_ = resolvedInput_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.matchType_ = matchType_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.confidence_ = confidence_;
}
result.bitField0_ |= to_bitField0_;
}
@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.cx.v3beta1.Match) {
return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.Match) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.Match other) {
if (other == com.google.cloud.dialogflow.cx.v3beta1.Match.getDefaultInstance()) return this;
if (other.hasIntent()) {
mergeIntent(other.getIntent());
}
if (!other.getEvent().isEmpty()) {
event_ = other.event_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasParameters()) {
mergeParameters(other.getParameters());
}
if (!other.getResolvedInput().isEmpty()) {
resolvedInput_ = other.resolvedInput_;
bitField0_ |= 0x00000008;
onChanged();
}
if (other.matchType_ != 0) {
setMatchTypeValue(other.getMatchTypeValue());
}
if (other.getConfidence() != 0F) {
setConfidence(other.getConfidence());
}
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:
{
input.readMessage(getIntentFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
input.readMessage(getParametersFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 18
case 26:
{
resolvedInput_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 26
case 32:
{
matchType_ = input.readEnum();
bitField0_ |= 0x00000010;
break;
} // case 32
case 45:
{
confidence_ = input.readFloat();
bitField0_ |= 0x00000020;
break;
} // case 45
case 50:
{
event_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 50
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 bitField0_;
private com.google.cloud.dialogflow.cx.v3beta1.Intent intent_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Intent,
com.google.cloud.dialogflow.cx.v3beta1.Intent.Builder,
com.google.cloud.dialogflow.cx.v3beta1.IntentOrBuilder>
intentBuilder_;
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*
* @return Whether the intent field is set.
*/
public boolean hasIntent() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*
* @return The intent.
*/
public com.google.cloud.dialogflow.cx.v3beta1.Intent getIntent() {
if (intentBuilder_ == null) {
return intent_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Intent.getDefaultInstance()
: intent_;
} else {
return intentBuilder_.getMessage();
}
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
public Builder setIntent(com.google.cloud.dialogflow.cx.v3beta1.Intent value) {
if (intentBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
intent_ = value;
} else {
intentBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
public Builder setIntent(
com.google.cloud.dialogflow.cx.v3beta1.Intent.Builder builderForValue) {
if (intentBuilder_ == null) {
intent_ = builderForValue.build();
} else {
intentBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
public Builder mergeIntent(com.google.cloud.dialogflow.cx.v3beta1.Intent value) {
if (intentBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& intent_ != null
&& intent_ != com.google.cloud.dialogflow.cx.v3beta1.Intent.getDefaultInstance()) {
getIntentBuilder().mergeFrom(value);
} else {
intent_ = value;
}
} else {
intentBuilder_.mergeFrom(value);
}
if (intent_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
public Builder clearIntent() {
bitField0_ = (bitField0_ & ~0x00000001);
intent_ = null;
if (intentBuilder_ != null) {
intentBuilder_.dispose();
intentBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
public com.google.cloud.dialogflow.cx.v3beta1.Intent.Builder getIntentBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getIntentFieldBuilder().getBuilder();
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
public com.google.cloud.dialogflow.cx.v3beta1.IntentOrBuilder getIntentOrBuilder() {
if (intentBuilder_ != null) {
return intentBuilder_.getMessageOrBuilder();
} else {
return intent_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Intent.getDefaultInstance()
: intent_;
}
}
/**
*
*
*
* The [Intent][google.cloud.dialogflow.cx.v3beta1.Intent] that matched the
* query. Some, not all fields are filled in this message, including but not
* limited to: `name` and `display_name`. Only filled for
* [`INTENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match type.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Intent intent = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Intent,
com.google.cloud.dialogflow.cx.v3beta1.Intent.Builder,
com.google.cloud.dialogflow.cx.v3beta1.IntentOrBuilder>
getIntentFieldBuilder() {
if (intentBuilder_ == null) {
intentBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Intent,
com.google.cloud.dialogflow.cx.v3beta1.Intent.Builder,
com.google.cloud.dialogflow.cx.v3beta1.IntentOrBuilder>(
getIntent(), getParentForChildren(), isClean());
intent_ = null;
}
return intentBuilder_;
}
private java.lang.Object event_ = "";
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @return The event.
*/
public java.lang.String getEvent() {
java.lang.Object ref = event_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
event_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @return The bytes for event.
*/
public com.google.protobuf.ByteString getEventBytes() {
java.lang.Object ref = event_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
event_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @param value The event to set.
* @return This builder for chaining.
*/
public Builder setEvent(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
event_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @return This builder for chaining.
*/
public Builder clearEvent() {
event_ = getDefaultInstance().getEvent();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* The event that matched the query. Filled for
* [`EVENT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType],
* [`NO_MATCH`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] and
* [`NO_INPUT`][google.cloud.dialogflow.cx.v3beta1.Match.MatchType] match
* types.
*
*
* string event = 6;
*
* @param value The bytes for event to set.
* @return This builder for chaining.
*/
public Builder setEventBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
event_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.protobuf.Struct parameters_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Struct,
com.google.protobuf.Struct.Builder,
com.google.protobuf.StructOrBuilder>
parametersBuilder_;
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*
* @return Whether the parameters field is set.
*/
public boolean hasParameters() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*
* @return The parameters.
*/
public com.google.protobuf.Struct getParameters() {
if (parametersBuilder_ == null) {
return parameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : parameters_;
} else {
return parametersBuilder_.getMessage();
}
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
public Builder setParameters(com.google.protobuf.Struct value) {
if (parametersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
parameters_ = value;
} else {
parametersBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
public Builder setParameters(com.google.protobuf.Struct.Builder builderForValue) {
if (parametersBuilder_ == null) {
parameters_ = builderForValue.build();
} else {
parametersBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
public Builder mergeParameters(com.google.protobuf.Struct value) {
if (parametersBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& parameters_ != null
&& parameters_ != com.google.protobuf.Struct.getDefaultInstance()) {
getParametersBuilder().mergeFrom(value);
} else {
parameters_ = value;
}
} else {
parametersBuilder_.mergeFrom(value);
}
if (parameters_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
public Builder clearParameters() {
bitField0_ = (bitField0_ & ~0x00000004);
parameters_ = null;
if (parametersBuilder_ != null) {
parametersBuilder_.dispose();
parametersBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
public com.google.protobuf.Struct.Builder getParametersBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getParametersFieldBuilder().getBuilder();
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
public com.google.protobuf.StructOrBuilder getParametersOrBuilder() {
if (parametersBuilder_ != null) {
return parametersBuilder_.getMessageOrBuilder();
} else {
return parameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : parameters_;
}
}
/**
*
*
*
* The collection of parameters extracted from the query.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Struct,
com.google.protobuf.Struct.Builder,
com.google.protobuf.StructOrBuilder>
getParametersFieldBuilder() {
if (parametersBuilder_ == null) {
parametersBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Struct,
com.google.protobuf.Struct.Builder,
com.google.protobuf.StructOrBuilder>(
getParameters(), getParentForChildren(), isClean());
parameters_ = null;
}
return parametersBuilder_;
}
private java.lang.Object resolvedInput_ = "";
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @return The resolvedInput.
*/
public java.lang.String getResolvedInput() {
java.lang.Object ref = resolvedInput_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
resolvedInput_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @return The bytes for resolvedInput.
*/
public com.google.protobuf.ByteString getResolvedInputBytes() {
java.lang.Object ref = resolvedInput_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
resolvedInput_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @param value The resolvedInput to set.
* @return This builder for chaining.
*/
public Builder setResolvedInput(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
resolvedInput_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @return This builder for chaining.
*/
public Builder clearResolvedInput() {
resolvedInput_ = getDefaultInstance().getResolvedInput();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
*
*
*
* Final text input which was matched during MatchIntent. This value can be
* different from original input sent in request because of spelling
* correction or other processing.
*
*
* string resolved_input = 3;
*
* @param value The bytes for resolvedInput to set.
* @return This builder for chaining.
*/
public Builder setResolvedInputBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
resolvedInput_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private int matchType_ = 0;
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @return The enum numeric value on the wire for matchType.
*/
@java.lang.Override
public int getMatchTypeValue() {
return matchType_;
}
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @param value The enum numeric value on the wire for matchType to set.
* @return This builder for chaining.
*/
public Builder setMatchTypeValue(int value) {
matchType_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @return The matchType.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType getMatchType() {
com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType result =
com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType.forNumber(matchType_);
return result == null
? com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType.UNRECOGNIZED
: result;
}
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @param value The matchType to set.
* @return This builder for chaining.
*/
public Builder setMatchType(com.google.cloud.dialogflow.cx.v3beta1.Match.MatchType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
matchType_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* Type of this [Match][google.cloud.dialogflow.cx.v3beta1.Match].
*
*
* .google.cloud.dialogflow.cx.v3beta1.Match.MatchType match_type = 4;
*
* @return This builder for chaining.
*/
public Builder clearMatchType() {
bitField0_ = (bitField0_ & ~0x00000010);
matchType_ = 0;
onChanged();
return this;
}
private float confidence_;
/**
*
*
*
* The confidence of this match. Values range from 0.0 (completely uncertain)
* to 1.0 (completely certain).
* This value is for informational purpose only and is only used to help match
* the best intent within the classification threshold. This value may change
* for the same end-user expression at any time due to a model retraining or
* change in implementation.
*
*
* float confidence = 5;
*
* @return The confidence.
*/
@java.lang.Override
public float getConfidence() {
return confidence_;
}
/**
*
*
*
* The confidence of this match. Values range from 0.0 (completely uncertain)
* to 1.0 (completely certain).
* This value is for informational purpose only and is only used to help match
* the best intent within the classification threshold. This value may change
* for the same end-user expression at any time due to a model retraining or
* change in implementation.
*
*
* float confidence = 5;
*
* @param value The confidence to set.
* @return This builder for chaining.
*/
public Builder setConfidence(float value) {
confidence_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* The confidence of this match. Values range from 0.0 (completely uncertain)
* to 1.0 (completely certain).
* This value is for informational purpose only and is only used to help match
* the best intent within the classification threshold. This value may change
* for the same end-user expression at any time due to a model retraining or
* change in implementation.
*
*
* float confidence = 5;
*
* @return This builder for chaining.
*/
public Builder clearConfidence() {
bitField0_ = (bitField0_ & ~0x00000020);
confidence_ = 0F;
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.cx.v3beta1.Match)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.Match)
private static final com.google.cloud.dialogflow.cx.v3beta1.Match DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.Match();
}
public static com.google.cloud.dialogflow.cx.v3beta1.Match getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Match 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.cx.v3beta1.Match getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}