All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dialogflow.cx.v3.TestError Maven / Gradle / Ivy

There is a newer version: 0.66.0
Show newest version
/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3/test_case.proto

package com.google.cloud.dialogflow.cx.v3;

/**
 *
 *
 * 
 * Error info for running a test.
 * 
* * Protobuf type {@code google.cloud.dialogflow.cx.v3.TestError} */ public final class TestError extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3.TestError) TestErrorOrBuilder { private static final long serialVersionUID = 0L; // Use TestError.newBuilder() to construct. private TestError(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private TestError() { testCase_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new TestError(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private TestError( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { java.lang.String s = input.readStringRequireUtf8(); testCase_ = s; break; } case 18: { com.google.rpc.Status.Builder subBuilder = null; if (status_ != null) { subBuilder = status_.toBuilder(); } status_ = input.readMessage(com.google.rpc.Status.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(status_); status_ = subBuilder.buildPartial(); } break; } case 26: { com.google.protobuf.Timestamp.Builder subBuilder = null; if (testTime_ != null) { subBuilder = testTime_.toBuilder(); } testTime_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(testTime_); testTime_ = subBuilder.buildPartial(); } break; } default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.cx.v3.TestCaseProto .internal_static_google_cloud_dialogflow_cx_v3_TestError_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.cx.v3.TestCaseProto .internal_static_google_cloud_dialogflow_cx_v3_TestError_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.cx.v3.TestError.class, com.google.cloud.dialogflow.cx.v3.TestError.Builder.class); } public static final int TEST_CASE_FIELD_NUMBER = 1; private volatile java.lang.Object testCase_; /** * * *
   * The test case resource name.
   * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @return The testCase. */ @java.lang.Override public java.lang.String getTestCase() { java.lang.Object ref = testCase_; 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(); testCase_ = s; return s; } } /** * * *
   * The test case resource name.
   * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @return The bytes for testCase. */ @java.lang.Override public com.google.protobuf.ByteString getTestCaseBytes() { java.lang.Object ref = testCase_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); testCase_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int STATUS_FIELD_NUMBER = 2; private com.google.rpc.Status status_; /** * * *
   * The status associated with the test.
   * 
* * .google.rpc.Status status = 2; * * @return Whether the status field is set. */ @java.lang.Override public boolean hasStatus() { return status_ != null; } /** * * *
   * The status associated with the test.
   * 
* * .google.rpc.Status status = 2; * * @return The status. */ @java.lang.Override public com.google.rpc.Status getStatus() { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } /** * * *
   * The status associated with the test.
   * 
* * .google.rpc.Status status = 2; */ @java.lang.Override public com.google.rpc.StatusOrBuilder getStatusOrBuilder() { return getStatus(); } public static final int TEST_TIME_FIELD_NUMBER = 3; private com.google.protobuf.Timestamp testTime_; /** * * *
   * The timestamp when the test was completed.
   * 
* * .google.protobuf.Timestamp test_time = 3; * * @return Whether the testTime field is set. */ @java.lang.Override public boolean hasTestTime() { return testTime_ != null; } /** * * *
   * The timestamp when the test was completed.
   * 
* * .google.protobuf.Timestamp test_time = 3; * * @return The testTime. */ @java.lang.Override public com.google.protobuf.Timestamp getTestTime() { return testTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : testTime_; } /** * * *
   * The timestamp when the test was completed.
   * 
* * .google.protobuf.Timestamp test_time = 3; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getTestTimeOrBuilder() { return getTestTime(); } 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 (!getTestCaseBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, testCase_); } if (status_ != null) { output.writeMessage(2, getStatus()); } if (testTime_ != null) { output.writeMessage(3, getTestTime()); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getTestCaseBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, testCase_); } if (status_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getStatus()); } if (testTime_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getTestTime()); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.dialogflow.cx.v3.TestError)) { return super.equals(obj); } com.google.cloud.dialogflow.cx.v3.TestError other = (com.google.cloud.dialogflow.cx.v3.TestError) obj; if (!getTestCase().equals(other.getTestCase())) return false; if (hasStatus() != other.hasStatus()) return false; if (hasStatus()) { if (!getStatus().equals(other.getStatus())) return false; } if (hasTestTime() != other.hasTestTime()) return false; if (hasTestTime()) { if (!getTestTime().equals(other.getTestTime())) return false; } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + TEST_CASE_FIELD_NUMBER; hash = (53 * hash) + getTestCase().hashCode(); if (hasStatus()) { hash = (37 * hash) + STATUS_FIELD_NUMBER; hash = (53 * hash) + getStatus().hashCode(); } if (hasTestTime()) { hash = (37 * hash) + TEST_TIME_FIELD_NUMBER; hash = (53 * hash) + getTestTime().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.cx.v3.TestError parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3.TestError 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.v3.TestError parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3.TestError 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.v3.TestError parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3.TestError 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.v3.TestError parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.cx.v3.TestError 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.v3.TestError parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.cx.v3.TestError 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.v3.TestError 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.v3.TestError 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.v3.TestError 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; } /** * * *
   * Error info for running a test.
   * 
* * Protobuf type {@code google.cloud.dialogflow.cx.v3.TestError} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3.TestError) com.google.cloud.dialogflow.cx.v3.TestErrorOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.cx.v3.TestCaseProto .internal_static_google_cloud_dialogflow_cx_v3_TestError_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.cx.v3.TestCaseProto .internal_static_google_cloud_dialogflow_cx_v3_TestError_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.cx.v3.TestError.class, com.google.cloud.dialogflow.cx.v3.TestError.Builder.class); } // Construct using com.google.cloud.dialogflow.cx.v3.TestError.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} } @java.lang.Override public Builder clear() { super.clear(); testCase_ = ""; if (statusBuilder_ == null) { status_ = null; } else { status_ = null; statusBuilder_ = null; } if (testTimeBuilder_ == null) { testTime_ = null; } else { testTime_ = null; testTimeBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.cx.v3.TestCaseProto .internal_static_google_cloud_dialogflow_cx_v3_TestError_descriptor; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3.TestError getDefaultInstanceForType() { return com.google.cloud.dialogflow.cx.v3.TestError.getDefaultInstance(); } @java.lang.Override public com.google.cloud.dialogflow.cx.v3.TestError build() { com.google.cloud.dialogflow.cx.v3.TestError result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3.TestError buildPartial() { com.google.cloud.dialogflow.cx.v3.TestError result = new com.google.cloud.dialogflow.cx.v3.TestError(this); result.testCase_ = testCase_; if (statusBuilder_ == null) { result.status_ = status_; } else { result.status_ = statusBuilder_.build(); } if (testTimeBuilder_ == null) { result.testTime_ = testTime_; } else { result.testTime_ = testTimeBuilder_.build(); } onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.dialogflow.cx.v3.TestError) { return mergeFrom((com.google.cloud.dialogflow.cx.v3.TestError) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3.TestError other) { if (other == com.google.cloud.dialogflow.cx.v3.TestError.getDefaultInstance()) return this; if (!other.getTestCase().isEmpty()) { testCase_ = other.testCase_; onChanged(); } if (other.hasStatus()) { mergeStatus(other.getStatus()); } if (other.hasTestTime()) { mergeTestTime(other.getTestTime()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.cloud.dialogflow.cx.v3.TestError parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.dialogflow.cx.v3.TestError) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object testCase_ = ""; /** * * *
     * The test case resource name.
     * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @return The testCase. */ public java.lang.String getTestCase() { java.lang.Object ref = testCase_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); testCase_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The test case resource name.
     * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @return The bytes for testCase. */ public com.google.protobuf.ByteString getTestCaseBytes() { java.lang.Object ref = testCase_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); testCase_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The test case resource name.
     * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @param value The testCase to set. * @return This builder for chaining. */ public Builder setTestCase(java.lang.String value) { if (value == null) { throw new NullPointerException(); } testCase_ = value; onChanged(); return this; } /** * * *
     * The test case resource name.
     * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @return This builder for chaining. */ public Builder clearTestCase() { testCase_ = getDefaultInstance().getTestCase(); onChanged(); return this; } /** * * *
     * The test case resource name.
     * 
* * string test_case = 1 [(.google.api.resource_reference) = { ... } * * @param value The bytes for testCase to set. * @return This builder for chaining. */ public Builder setTestCaseBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); testCase_ = value; onChanged(); return this; } private com.google.rpc.Status status_; private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> statusBuilder_; /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; * * @return Whether the status field is set. */ public boolean hasStatus() { return statusBuilder_ != null || status_ != null; } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; * * @return The status. */ public com.google.rpc.Status getStatus() { if (statusBuilder_ == null) { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } else { return statusBuilder_.getMessage(); } } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ public Builder setStatus(com.google.rpc.Status value) { if (statusBuilder_ == null) { if (value == null) { throw new NullPointerException(); } status_ = value; onChanged(); } else { statusBuilder_.setMessage(value); } return this; } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ public Builder setStatus(com.google.rpc.Status.Builder builderForValue) { if (statusBuilder_ == null) { status_ = builderForValue.build(); onChanged(); } else { statusBuilder_.setMessage(builderForValue.build()); } return this; } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ public Builder mergeStatus(com.google.rpc.Status value) { if (statusBuilder_ == null) { if (status_ != null) { status_ = com.google.rpc.Status.newBuilder(status_).mergeFrom(value).buildPartial(); } else { status_ = value; } onChanged(); } else { statusBuilder_.mergeFrom(value); } return this; } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ public Builder clearStatus() { if (statusBuilder_ == null) { status_ = null; onChanged(); } else { status_ = null; statusBuilder_ = null; } return this; } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ public com.google.rpc.Status.Builder getStatusBuilder() { onChanged(); return getStatusFieldBuilder().getBuilder(); } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ public com.google.rpc.StatusOrBuilder getStatusOrBuilder() { if (statusBuilder_ != null) { return statusBuilder_.getMessageOrBuilder(); } else { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } } /** * * *
     * The status associated with the test.
     * 
* * .google.rpc.Status status = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> getStatusFieldBuilder() { if (statusBuilder_ == null) { statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>(getStatus(), getParentForChildren(), isClean()); status_ = null; } return statusBuilder_; } private com.google.protobuf.Timestamp testTime_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> testTimeBuilder_; /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; * * @return Whether the testTime field is set. */ public boolean hasTestTime() { return testTimeBuilder_ != null || testTime_ != null; } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; * * @return The testTime. */ public com.google.protobuf.Timestamp getTestTime() { if (testTimeBuilder_ == null) { return testTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : testTime_; } else { return testTimeBuilder_.getMessage(); } } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ public Builder setTestTime(com.google.protobuf.Timestamp value) { if (testTimeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } testTime_ = value; onChanged(); } else { testTimeBuilder_.setMessage(value); } return this; } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ public Builder setTestTime(com.google.protobuf.Timestamp.Builder builderForValue) { if (testTimeBuilder_ == null) { testTime_ = builderForValue.build(); onChanged(); } else { testTimeBuilder_.setMessage(builderForValue.build()); } return this; } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ public Builder mergeTestTime(com.google.protobuf.Timestamp value) { if (testTimeBuilder_ == null) { if (testTime_ != null) { testTime_ = com.google.protobuf.Timestamp.newBuilder(testTime_).mergeFrom(value).buildPartial(); } else { testTime_ = value; } onChanged(); } else { testTimeBuilder_.mergeFrom(value); } return this; } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ public Builder clearTestTime() { if (testTimeBuilder_ == null) { testTime_ = null; onChanged(); } else { testTime_ = null; testTimeBuilder_ = null; } return this; } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ public com.google.protobuf.Timestamp.Builder getTestTimeBuilder() { onChanged(); return getTestTimeFieldBuilder().getBuilder(); } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ public com.google.protobuf.TimestampOrBuilder getTestTimeOrBuilder() { if (testTimeBuilder_ != null) { return testTimeBuilder_.getMessageOrBuilder(); } else { return testTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : testTime_; } } /** * * *
     * The timestamp when the test was completed.
     * 
* * .google.protobuf.Timestamp test_time = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> getTestTimeFieldBuilder() { if (testTimeBuilder_ == null) { testTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( getTestTime(), getParentForChildren(), isClean()); testTime_ = null; } return testTimeBuilder_; } @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.v3.TestError) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3.TestError) private static final com.google.cloud.dialogflow.cx.v3.TestError DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3.TestError(); } public static com.google.cloud.dialogflow.cx.v3.TestError getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public TestError parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new TestError(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3.TestError getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy