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

com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse Maven / Gradle / Ivy

There is a newer version: 4.55.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dialogflow/v2/session.proto

package com.google.cloud.dialogflow.v2;

/**
 * 
 * The top-level message returned from the
 * `StreamingDetectIntent` method.
 * Multiple response messages can be returned in order:
 * 1.  If the input was set to streaming audio, the first one or more messages
 *     contain `recognition_result`. Each `recognition_result` represents a more
 *     complete transcript of what the user said. The last `recognition_result`
 *     has `is_final` set to `true`.
 * 2.  The next message contains `response_id`, `query_result`
 *     and optionally `webhook_status` if a WebHook was called.
 * 
* * Protobuf type {@code google.cloud.dialogflow.v2.StreamingDetectIntentResponse} */ public final class StreamingDetectIntentResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2.StreamingDetectIntentResponse) StreamingDetectIntentResponseOrBuilder { private static final long serialVersionUID = 0L; // Use StreamingDetectIntentResponse.newBuilder() to construct. private StreamingDetectIntentResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private StreamingDetectIntentResponse() { responseId_ = ""; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private StreamingDetectIntentResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!parseUnknownFieldProto3( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } case 10: { java.lang.String s = input.readStringRequireUtf8(); responseId_ = s; break; } case 18: { com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder subBuilder = null; if (recognitionResult_ != null) { subBuilder = recognitionResult_.toBuilder(); } recognitionResult_ = input.readMessage(com.google.cloud.dialogflow.v2.StreamingRecognitionResult.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(recognitionResult_); recognitionResult_ = subBuilder.buildPartial(); } break; } case 26: { com.google.cloud.dialogflow.v2.QueryResult.Builder subBuilder = null; if (queryResult_ != null) { subBuilder = queryResult_.toBuilder(); } queryResult_ = input.readMessage(com.google.cloud.dialogflow.v2.QueryResult.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(queryResult_); queryResult_ = subBuilder.buildPartial(); } break; } case 34: { com.google.rpc.Status.Builder subBuilder = null; if (webhookStatus_ != null) { subBuilder = webhookStatus_.toBuilder(); } webhookStatus_ = input.readMessage(com.google.rpc.Status.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(webhookStatus_); webhookStatus_ = subBuilder.buildPartial(); } 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.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.class, com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.Builder.class); } public static final int RESPONSE_ID_FIELD_NUMBER = 1; private volatile java.lang.Object responseId_; /** *
   * The unique identifier of the response. It can be used to
   * locate a response in the training example set or for reporting issues.
   * 
* * string response_id = 1; */ public java.lang.String getResponseId() { java.lang.Object ref = responseId_; 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(); responseId_ = s; return s; } } /** *
   * The unique identifier of the response. It can be used to
   * locate a response in the training example set or for reporting issues.
   * 
* * string response_id = 1; */ public com.google.protobuf.ByteString getResponseIdBytes() { java.lang.Object ref = responseId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); responseId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int RECOGNITION_RESULT_FIELD_NUMBER = 2; private com.google.cloud.dialogflow.v2.StreamingRecognitionResult recognitionResult_; /** *
   * The result of speech recognition.
   * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public boolean hasRecognitionResult() { return recognitionResult_ != null; } /** *
   * The result of speech recognition.
   * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public com.google.cloud.dialogflow.v2.StreamingRecognitionResult getRecognitionResult() { return recognitionResult_ == null ? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance() : recognitionResult_; } /** *
   * The result of speech recognition.
   * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder getRecognitionResultOrBuilder() { return getRecognitionResult(); } public static final int QUERY_RESULT_FIELD_NUMBER = 3; private com.google.cloud.dialogflow.v2.QueryResult queryResult_; /** *
   * The result of the conversational query or event processing.
   * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public boolean hasQueryResult() { return queryResult_ != null; } /** *
   * The result of the conversational query or event processing.
   * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public com.google.cloud.dialogflow.v2.QueryResult getQueryResult() { return queryResult_ == null ? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance() : queryResult_; } /** *
   * The result of the conversational query or event processing.
   * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public com.google.cloud.dialogflow.v2.QueryResultOrBuilder getQueryResultOrBuilder() { return getQueryResult(); } public static final int WEBHOOK_STATUS_FIELD_NUMBER = 4; private com.google.rpc.Status webhookStatus_; /** *
   * Specifies the status of the webhook request.
   * 
* * .google.rpc.Status webhook_status = 4; */ public boolean hasWebhookStatus() { return webhookStatus_ != null; } /** *
   * Specifies the status of the webhook request.
   * 
* * .google.rpc.Status webhook_status = 4; */ public com.google.rpc.Status getWebhookStatus() { return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_; } /** *
   * Specifies the status of the webhook request.
   * 
* * .google.rpc.Status webhook_status = 4; */ public com.google.rpc.StatusOrBuilder getWebhookStatusOrBuilder() { return getWebhookStatus(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getResponseIdBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, responseId_); } if (recognitionResult_ != null) { output.writeMessage(2, getRecognitionResult()); } if (queryResult_ != null) { output.writeMessage(3, getQueryResult()); } if (webhookStatus_ != null) { output.writeMessage(4, getWebhookStatus()); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getResponseIdBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, responseId_); } if (recognitionResult_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getRecognitionResult()); } if (queryResult_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, getQueryResult()); } if (webhookStatus_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, getWebhookStatus()); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse)) { return super.equals(obj); } com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse other = (com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse) obj; boolean result = true; result = result && getResponseId() .equals(other.getResponseId()); result = result && (hasRecognitionResult() == other.hasRecognitionResult()); if (hasRecognitionResult()) { result = result && getRecognitionResult() .equals(other.getRecognitionResult()); } result = result && (hasQueryResult() == other.hasQueryResult()); if (hasQueryResult()) { result = result && getQueryResult() .equals(other.getQueryResult()); } result = result && (hasWebhookStatus() == other.hasWebhookStatus()); if (hasWebhookStatus()) { result = result && getWebhookStatus() .equals(other.getWebhookStatus()); } result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + RESPONSE_ID_FIELD_NUMBER; hash = (53 * hash) + getResponseId().hashCode(); if (hasRecognitionResult()) { hash = (37 * hash) + RECOGNITION_RESULT_FIELD_NUMBER; hash = (53 * hash) + getRecognitionResult().hashCode(); } if (hasQueryResult()) { hash = (37 * hash) + QUERY_RESULT_FIELD_NUMBER; hash = (53 * hash) + getQueryResult().hashCode(); } if (hasWebhookStatus()) { hash = (37 * hash) + WEBHOOK_STATUS_FIELD_NUMBER; hash = (53 * hash) + getWebhookStatus().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } 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 top-level message returned from the
   * `StreamingDetectIntent` method.
   * Multiple response messages can be returned in order:
   * 1.  If the input was set to streaming audio, the first one or more messages
   *     contain `recognition_result`. Each `recognition_result` represents a more
   *     complete transcript of what the user said. The last `recognition_result`
   *     has `is_final` set to `true`.
   * 2.  The next message contains `response_id`, `query_result`
   *     and optionally `webhook_status` if a WebHook was called.
   * 
* * Protobuf type {@code google.cloud.dialogflow.v2.StreamingDetectIntentResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.v2.StreamingDetectIntentResponse) com.google.cloud.dialogflow.v2.StreamingDetectIntentResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.class, com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.Builder.class); } // Construct using com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } public Builder clear() { super.clear(); responseId_ = ""; if (recognitionResultBuilder_ == null) { recognitionResult_ = null; } else { recognitionResult_ = null; recognitionResultBuilder_ = null; } if (queryResultBuilder_ == null) { queryResult_ = null; } else { queryResult_ = null; queryResultBuilder_ = null; } if (webhookStatusBuilder_ == null) { webhookStatus_ = null; } else { webhookStatus_ = null; webhookStatusBuilder_ = null; } return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.v2.SessionProto.internal_static_google_cloud_dialogflow_v2_StreamingDetectIntentResponse_descriptor; } public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse getDefaultInstanceForType() { return com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.getDefaultInstance(); } public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse build() { com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse buildPartial() { com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse result = new com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse(this); result.responseId_ = responseId_; if (recognitionResultBuilder_ == null) { result.recognitionResult_ = recognitionResult_; } else { result.recognitionResult_ = recognitionResultBuilder_.build(); } if (queryResultBuilder_ == null) { result.queryResult_ = queryResult_; } else { result.queryResult_ = queryResultBuilder_.build(); } if (webhookStatusBuilder_ == null) { result.webhookStatus_ = webhookStatus_; } else { result.webhookStatus_ = webhookStatusBuilder_.build(); } onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse) { return mergeFrom((com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse other) { if (other == com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse.getDefaultInstance()) return this; if (!other.getResponseId().isEmpty()) { responseId_ = other.responseId_; onChanged(); } if (other.hasRecognitionResult()) { mergeRecognitionResult(other.getRecognitionResult()); } if (other.hasQueryResult()) { mergeQueryResult(other.getQueryResult()); } if (other.hasWebhookStatus()) { mergeWebhookStatus(other.getWebhookStatus()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object responseId_ = ""; /** *
     * The unique identifier of the response. It can be used to
     * locate a response in the training example set or for reporting issues.
     * 
* * string response_id = 1; */ public java.lang.String getResponseId() { java.lang.Object ref = responseId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); responseId_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The unique identifier of the response. It can be used to
     * locate a response in the training example set or for reporting issues.
     * 
* * string response_id = 1; */ public com.google.protobuf.ByteString getResponseIdBytes() { java.lang.Object ref = responseId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); responseId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The unique identifier of the response. It can be used to
     * locate a response in the training example set or for reporting issues.
     * 
* * string response_id = 1; */ public Builder setResponseId( java.lang.String value) { if (value == null) { throw new NullPointerException(); } responseId_ = value; onChanged(); return this; } /** *
     * The unique identifier of the response. It can be used to
     * locate a response in the training example set or for reporting issues.
     * 
* * string response_id = 1; */ public Builder clearResponseId() { responseId_ = getDefaultInstance().getResponseId(); onChanged(); return this; } /** *
     * The unique identifier of the response. It can be used to
     * locate a response in the training example set or for reporting issues.
     * 
* * string response_id = 1; */ public Builder setResponseIdBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); responseId_ = value; onChanged(); return this; } private com.google.cloud.dialogflow.v2.StreamingRecognitionResult recognitionResult_ = null; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.StreamingRecognitionResult, com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder, com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder> recognitionResultBuilder_; /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public boolean hasRecognitionResult() { return recognitionResultBuilder_ != null || recognitionResult_ != null; } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public com.google.cloud.dialogflow.v2.StreamingRecognitionResult getRecognitionResult() { if (recognitionResultBuilder_ == null) { return recognitionResult_ == null ? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance() : recognitionResult_; } else { return recognitionResultBuilder_.getMessage(); } } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public Builder setRecognitionResult(com.google.cloud.dialogflow.v2.StreamingRecognitionResult value) { if (recognitionResultBuilder_ == null) { if (value == null) { throw new NullPointerException(); } recognitionResult_ = value; onChanged(); } else { recognitionResultBuilder_.setMessage(value); } return this; } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public Builder setRecognitionResult( com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder builderForValue) { if (recognitionResultBuilder_ == null) { recognitionResult_ = builderForValue.build(); onChanged(); } else { recognitionResultBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public Builder mergeRecognitionResult(com.google.cloud.dialogflow.v2.StreamingRecognitionResult value) { if (recognitionResultBuilder_ == null) { if (recognitionResult_ != null) { recognitionResult_ = com.google.cloud.dialogflow.v2.StreamingRecognitionResult.newBuilder(recognitionResult_).mergeFrom(value).buildPartial(); } else { recognitionResult_ = value; } onChanged(); } else { recognitionResultBuilder_.mergeFrom(value); } return this; } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public Builder clearRecognitionResult() { if (recognitionResultBuilder_ == null) { recognitionResult_ = null; onChanged(); } else { recognitionResult_ = null; recognitionResultBuilder_ = null; } return this; } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder getRecognitionResultBuilder() { onChanged(); return getRecognitionResultFieldBuilder().getBuilder(); } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ public com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder getRecognitionResultOrBuilder() { if (recognitionResultBuilder_ != null) { return recognitionResultBuilder_.getMessageOrBuilder(); } else { return recognitionResult_ == null ? com.google.cloud.dialogflow.v2.StreamingRecognitionResult.getDefaultInstance() : recognitionResult_; } } /** *
     * The result of speech recognition.
     * 
* * .google.cloud.dialogflow.v2.StreamingRecognitionResult recognition_result = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.StreamingRecognitionResult, com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder, com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder> getRecognitionResultFieldBuilder() { if (recognitionResultBuilder_ == null) { recognitionResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.StreamingRecognitionResult, com.google.cloud.dialogflow.v2.StreamingRecognitionResult.Builder, com.google.cloud.dialogflow.v2.StreamingRecognitionResultOrBuilder>( getRecognitionResult(), getParentForChildren(), isClean()); recognitionResult_ = null; } return recognitionResultBuilder_; } private com.google.cloud.dialogflow.v2.QueryResult queryResult_ = null; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryResult, com.google.cloud.dialogflow.v2.QueryResult.Builder, com.google.cloud.dialogflow.v2.QueryResultOrBuilder> queryResultBuilder_; /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public boolean hasQueryResult() { return queryResultBuilder_ != null || queryResult_ != null; } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public com.google.cloud.dialogflow.v2.QueryResult getQueryResult() { if (queryResultBuilder_ == null) { return queryResult_ == null ? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance() : queryResult_; } else { return queryResultBuilder_.getMessage(); } } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public Builder setQueryResult(com.google.cloud.dialogflow.v2.QueryResult value) { if (queryResultBuilder_ == null) { if (value == null) { throw new NullPointerException(); } queryResult_ = value; onChanged(); } else { queryResultBuilder_.setMessage(value); } return this; } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public Builder setQueryResult( com.google.cloud.dialogflow.v2.QueryResult.Builder builderForValue) { if (queryResultBuilder_ == null) { queryResult_ = builderForValue.build(); onChanged(); } else { queryResultBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public Builder mergeQueryResult(com.google.cloud.dialogflow.v2.QueryResult value) { if (queryResultBuilder_ == null) { if (queryResult_ != null) { queryResult_ = com.google.cloud.dialogflow.v2.QueryResult.newBuilder(queryResult_).mergeFrom(value).buildPartial(); } else { queryResult_ = value; } onChanged(); } else { queryResultBuilder_.mergeFrom(value); } return this; } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public Builder clearQueryResult() { if (queryResultBuilder_ == null) { queryResult_ = null; onChanged(); } else { queryResult_ = null; queryResultBuilder_ = null; } return this; } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public com.google.cloud.dialogflow.v2.QueryResult.Builder getQueryResultBuilder() { onChanged(); return getQueryResultFieldBuilder().getBuilder(); } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ public com.google.cloud.dialogflow.v2.QueryResultOrBuilder getQueryResultOrBuilder() { if (queryResultBuilder_ != null) { return queryResultBuilder_.getMessageOrBuilder(); } else { return queryResult_ == null ? com.google.cloud.dialogflow.v2.QueryResult.getDefaultInstance() : queryResult_; } } /** *
     * The result of the conversational query or event processing.
     * 
* * .google.cloud.dialogflow.v2.QueryResult query_result = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryResult, com.google.cloud.dialogflow.v2.QueryResult.Builder, com.google.cloud.dialogflow.v2.QueryResultOrBuilder> getQueryResultFieldBuilder() { if (queryResultBuilder_ == null) { queryResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.dialogflow.v2.QueryResult, com.google.cloud.dialogflow.v2.QueryResult.Builder, com.google.cloud.dialogflow.v2.QueryResultOrBuilder>( getQueryResult(), getParentForChildren(), isClean()); queryResult_ = null; } return queryResultBuilder_; } private com.google.rpc.Status webhookStatus_ = null; private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> webhookStatusBuilder_; /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public boolean hasWebhookStatus() { return webhookStatusBuilder_ != null || webhookStatus_ != null; } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public com.google.rpc.Status getWebhookStatus() { if (webhookStatusBuilder_ == null) { return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_; } else { return webhookStatusBuilder_.getMessage(); } } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public Builder setWebhookStatus(com.google.rpc.Status value) { if (webhookStatusBuilder_ == null) { if (value == null) { throw new NullPointerException(); } webhookStatus_ = value; onChanged(); } else { webhookStatusBuilder_.setMessage(value); } return this; } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public Builder setWebhookStatus( com.google.rpc.Status.Builder builderForValue) { if (webhookStatusBuilder_ == null) { webhookStatus_ = builderForValue.build(); onChanged(); } else { webhookStatusBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public Builder mergeWebhookStatus(com.google.rpc.Status value) { if (webhookStatusBuilder_ == null) { if (webhookStatus_ != null) { webhookStatus_ = com.google.rpc.Status.newBuilder(webhookStatus_).mergeFrom(value).buildPartial(); } else { webhookStatus_ = value; } onChanged(); } else { webhookStatusBuilder_.mergeFrom(value); } return this; } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public Builder clearWebhookStatus() { if (webhookStatusBuilder_ == null) { webhookStatus_ = null; onChanged(); } else { webhookStatus_ = null; webhookStatusBuilder_ = null; } return this; } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public com.google.rpc.Status.Builder getWebhookStatusBuilder() { onChanged(); return getWebhookStatusFieldBuilder().getBuilder(); } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ public com.google.rpc.StatusOrBuilder getWebhookStatusOrBuilder() { if (webhookStatusBuilder_ != null) { return webhookStatusBuilder_.getMessageOrBuilder(); } else { return webhookStatus_ == null ? com.google.rpc.Status.getDefaultInstance() : webhookStatus_; } } /** *
     * Specifies the status of the webhook request.
     * 
* * .google.rpc.Status webhook_status = 4; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> getWebhookStatusFieldBuilder() { if (webhookStatusBuilder_ == null) { webhookStatusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>( getWebhookStatus(), getParentForChildren(), isClean()); webhookStatus_ = null; } return webhookStatusBuilder_; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.dialogflow.v2.StreamingDetectIntentResponse) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.v2.StreamingDetectIntentResponse) private static final com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse(); } public static com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public StreamingDetectIntentResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new StreamingDetectIntentResponse(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public com.google.cloud.dialogflow.v2.StreamingDetectIntentResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy