com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult 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/flow.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
/**
*
*
*
* The response message for
* [Flows.GetFlowValidationResult][google.cloud.dialogflow.cx.v3beta1.Flows.GetFlowValidationResult].
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.FlowValidationResult}
*/
public final class FlowValidationResult extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.FlowValidationResult)
FlowValidationResultOrBuilder {
private static final long serialVersionUID = 0L;
// Use FlowValidationResult.newBuilder() to construct.
private FlowValidationResult(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private FlowValidationResult() {
name_ = "";
validationMessages_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new FlowValidationResult();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.FlowProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_FlowValidationResult_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.FlowProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_FlowValidationResult_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.class,
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.Builder.class);
}
private int bitField0_;
public static final int NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
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();
name_ = s;
return s;
}
}
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int VALIDATION_MESSAGES_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private java.util.List
validationMessages_;
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
@java.lang.Override
public java.util.List
getValidationMessagesList() {
return validationMessages_;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
@java.lang.Override
public java.util.List extends com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder>
getValidationMessagesOrBuilderList() {
return validationMessages_;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
@java.lang.Override
public int getValidationMessagesCount() {
return validationMessages_.size();
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage getValidationMessages(int index) {
return validationMessages_.get(index);
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder
getValidationMessagesOrBuilder(int index) {
return validationMessages_.get(index);
}
public static final int UPDATE_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp updateTime_;
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*
* @return Whether the updateTime field is set.
*/
@java.lang.Override
public boolean hasUpdateTime() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*
* @return The updateTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getUpdateTime() {
return updateTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : updateTime_;
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() {
return updateTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : updateTime_;
}
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(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
for (int i = 0; i < validationMessages_.size(); i++) {
output.writeMessage(2, validationMessages_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(3, getUpdateTime());
}
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(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
for (int i = 0; i < validationMessages_.size(); i++) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(2, validationMessages_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getUpdateTime());
}
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.FlowValidationResult)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult other =
(com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult) obj;
if (!getName().equals(other.getName())) return false;
if (!getValidationMessagesList().equals(other.getValidationMessagesList())) return false;
if (hasUpdateTime() != other.hasUpdateTime()) return false;
if (hasUpdateTime()) {
if (!getUpdateTime().equals(other.getUpdateTime())) 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();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
if (getValidationMessagesCount() > 0) {
hash = (37 * hash) + VALIDATION_MESSAGES_FIELD_NUMBER;
hash = (53 * hash) + getValidationMessagesList().hashCode();
}
if (hasUpdateTime()) {
hash = (37 * hash) + UPDATE_TIME_FIELD_NUMBER;
hash = (53 * hash) + getUpdateTime().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult 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.FlowValidationResult parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult 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.FlowValidationResult parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult 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.FlowValidationResult 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.FlowValidationResult 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.FlowValidationResult 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.FlowValidationResult 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.FlowValidationResult 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.FlowValidationResult 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.FlowValidationResult 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;
}
/**
*
*
*
* The response message for
* [Flows.GetFlowValidationResult][google.cloud.dialogflow.cx.v3beta1.Flows.GetFlowValidationResult].
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.FlowValidationResult}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.FlowValidationResult)
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResultOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.FlowProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_FlowValidationResult_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.FlowProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_FlowValidationResult_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.class,
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.Builder.class);
}
// Construct using com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getValidationMessagesFieldBuilder();
getUpdateTimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
if (validationMessagesBuilder_ == null) {
validationMessages_ = java.util.Collections.emptyList();
} else {
validationMessages_ = null;
validationMessagesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
updateTime_ = null;
if (updateTimeBuilder_ != null) {
updateTimeBuilder_.dispose();
updateTimeBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.cx.v3beta1.FlowProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_FlowValidationResult_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult getDefaultInstanceForType() {
return com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult build() {
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult buildPartial() {
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult result =
new com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(
com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult result) {
if (validationMessagesBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
validationMessages_ = java.util.Collections.unmodifiableList(validationMessages_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.validationMessages_ = validationMessages_;
} else {
result.validationMessages_ = validationMessagesBuilder_.build();
}
}
private void buildPartial0(com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000004) != 0)) {
result.updateTime_ = updateTimeBuilder_ == null ? updateTime_ : updateTimeBuilder_.build();
to_bitField0_ |= 0x00000001;
}
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.FlowValidationResult) {
return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult other) {
if (other == com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult.getDefaultInstance())
return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (validationMessagesBuilder_ == null) {
if (!other.validationMessages_.isEmpty()) {
if (validationMessages_.isEmpty()) {
validationMessages_ = other.validationMessages_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureValidationMessagesIsMutable();
validationMessages_.addAll(other.validationMessages_);
}
onChanged();
}
} else {
if (!other.validationMessages_.isEmpty()) {
if (validationMessagesBuilder_.isEmpty()) {
validationMessagesBuilder_.dispose();
validationMessagesBuilder_ = null;
validationMessages_ = other.validationMessages_;
bitField0_ = (bitField0_ & ~0x00000002);
validationMessagesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getValidationMessagesFieldBuilder()
: null;
} else {
validationMessagesBuilder_.addAllMessages(other.validationMessages_);
}
}
}
if (other.hasUpdateTime()) {
mergeUpdateTime(other.getUpdateTime());
}
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:
{
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage m =
input.readMessage(
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.parser(),
extensionRegistry);
if (validationMessagesBuilder_ == null) {
ensureValidationMessagesIsMutable();
validationMessages_.add(m);
} else {
validationMessagesBuilder_.addMessage(m);
}
break;
} // case 18
case 26:
{
input.readMessage(getUpdateTimeFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
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 java.lang.Object name_ = "";
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* The unique identifier of the flow validation result.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/validationResult`.
*
*
* string name = 1;
*
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.util.List
validationMessages_ = java.util.Collections.emptyList();
private void ensureValidationMessagesIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
validationMessages_ =
new java.util.ArrayList(
validationMessages_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder>
validationMessagesBuilder_;
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public java.util.List
getValidationMessagesList() {
if (validationMessagesBuilder_ == null) {
return java.util.Collections.unmodifiableList(validationMessages_);
} else {
return validationMessagesBuilder_.getMessageList();
}
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public int getValidationMessagesCount() {
if (validationMessagesBuilder_ == null) {
return validationMessages_.size();
} else {
return validationMessagesBuilder_.getCount();
}
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage getValidationMessages(
int index) {
if (validationMessagesBuilder_ == null) {
return validationMessages_.get(index);
} else {
return validationMessagesBuilder_.getMessage(index);
}
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder setValidationMessages(
int index, com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage value) {
if (validationMessagesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureValidationMessagesIsMutable();
validationMessages_.set(index, value);
onChanged();
} else {
validationMessagesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder setValidationMessages(
int index,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder builderForValue) {
if (validationMessagesBuilder_ == null) {
ensureValidationMessagesIsMutable();
validationMessages_.set(index, builderForValue.build());
onChanged();
} else {
validationMessagesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder addValidationMessages(
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage value) {
if (validationMessagesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureValidationMessagesIsMutable();
validationMessages_.add(value);
onChanged();
} else {
validationMessagesBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder addValidationMessages(
int index, com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage value) {
if (validationMessagesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureValidationMessagesIsMutable();
validationMessages_.add(index, value);
onChanged();
} else {
validationMessagesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder addValidationMessages(
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder builderForValue) {
if (validationMessagesBuilder_ == null) {
ensureValidationMessagesIsMutable();
validationMessages_.add(builderForValue.build());
onChanged();
} else {
validationMessagesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder addValidationMessages(
int index,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder builderForValue) {
if (validationMessagesBuilder_ == null) {
ensureValidationMessagesIsMutable();
validationMessages_.add(index, builderForValue.build());
onChanged();
} else {
validationMessagesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder addAllValidationMessages(
java.lang.Iterable extends com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage>
values) {
if (validationMessagesBuilder_ == null) {
ensureValidationMessagesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, validationMessages_);
onChanged();
} else {
validationMessagesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder clearValidationMessages() {
if (validationMessagesBuilder_ == null) {
validationMessages_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
validationMessagesBuilder_.clear();
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public Builder removeValidationMessages(int index) {
if (validationMessagesBuilder_ == null) {
ensureValidationMessagesIsMutable();
validationMessages_.remove(index);
onChanged();
} else {
validationMessagesBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder
getValidationMessagesBuilder(int index) {
return getValidationMessagesFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder
getValidationMessagesOrBuilder(int index) {
if (validationMessagesBuilder_ == null) {
return validationMessages_.get(index);
} else {
return validationMessagesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public java.util.List<
? extends com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder>
getValidationMessagesOrBuilderList() {
if (validationMessagesBuilder_ != null) {
return validationMessagesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(validationMessages_);
}
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder
addValidationMessagesBuilder() {
return getValidationMessagesFieldBuilder()
.addBuilder(
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.getDefaultInstance());
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder
addValidationMessagesBuilder(int index) {
return getValidationMessagesFieldBuilder()
.addBuilder(
index, com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.getDefaultInstance());
}
/**
*
*
*
* Contains all validation messages.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ValidationMessage validation_messages = 2;
*
*/
public java.util.List
getValidationMessagesBuilderList() {
return getValidationMessagesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder>
getValidationMessagesFieldBuilder() {
if (validationMessagesBuilder_ == null) {
validationMessagesBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Builder,
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder>(
validationMessages_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
validationMessages_ = null;
}
return validationMessagesBuilder_;
}
private com.google.protobuf.Timestamp updateTime_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
updateTimeBuilder_;
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*
* @return Whether the updateTime field is set.
*/
public boolean hasUpdateTime() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*
* @return The updateTime.
*/
public com.google.protobuf.Timestamp getUpdateTime() {
if (updateTimeBuilder_ == null) {
return updateTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
: updateTime_;
} else {
return updateTimeBuilder_.getMessage();
}
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
public Builder setUpdateTime(com.google.protobuf.Timestamp value) {
if (updateTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
updateTime_ = value;
} else {
updateTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
public Builder setUpdateTime(com.google.protobuf.Timestamp.Builder builderForValue) {
if (updateTimeBuilder_ == null) {
updateTime_ = builderForValue.build();
} else {
updateTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
public Builder mergeUpdateTime(com.google.protobuf.Timestamp value) {
if (updateTimeBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& updateTime_ != null
&& updateTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
getUpdateTimeBuilder().mergeFrom(value);
} else {
updateTime_ = value;
}
} else {
updateTimeBuilder_.mergeFrom(value);
}
if (updateTime_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
public Builder clearUpdateTime() {
bitField0_ = (bitField0_ & ~0x00000004);
updateTime_ = null;
if (updateTimeBuilder_ != null) {
updateTimeBuilder_.dispose();
updateTimeBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
public com.google.protobuf.Timestamp.Builder getUpdateTimeBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getUpdateTimeFieldBuilder().getBuilder();
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder() {
if (updateTimeBuilder_ != null) {
return updateTimeBuilder_.getMessageOrBuilder();
} else {
return updateTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
: updateTime_;
}
}
/**
*
*
*
* Last time the flow was validated.
*
*
* .google.protobuf.Timestamp update_time = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
getUpdateTimeFieldBuilder() {
if (updateTimeBuilder_ == null) {
updateTimeBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>(
getUpdateTime(), getParentForChildren(), isClean());
updateTime_ = null;
}
return updateTimeBuilder_;
}
@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.FlowValidationResult)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.FlowValidationResult)
private static final com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult();
}
public static com.google.cloud.dialogflow.cx.v3beta1.FlowValidationResult getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public FlowValidationResult 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.FlowValidationResult getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}