/*
 * 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/translate/v3/translation_service.proto

package com.google.cloud.translate.v3;

/**
 *
 *
 * <pre>
 * A single translation response.
 * </pre>
 *
 * Protobuf type {@code google.cloud.translation.v3.Translation}
 */
public final class Translation extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.translation.v3.Translation)
    TranslationOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use Translation.newBuilder() to construct.
  private Translation(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private Translation() {
    translatedText_ = "";
    model_ = "";
    detectedLanguageCode_ = "";
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
    return new Translation();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
    return this.unknownFields;
  }

  public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    return com.google.cloud.translate.v3.TranslationServiceProto
        .internal_static_google_cloud_translation_v3_Translation_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.translate.v3.TranslationServiceProto
        .internal_static_google_cloud_translation_v3_Translation_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.translate.v3.Translation.class,
            com.google.cloud.translate.v3.Translation.Builder.class);
  }

  public static final int TRANSLATED_TEXT_FIELD_NUMBER = 1;

  @SuppressWarnings("serial")
  private volatile java.lang.Object translatedText_ = "";
  /**
   *
   *
   * <pre>
   * Text translated into the target language.
   * If an error occurs during translation, this field might be excluded from
   * the response.
   * </pre>
   *
   * <code>string translated_text = 1;</code>
   *
   * @return The translatedText.
   */
  @java.lang.Override
  public java.lang.String getTranslatedText() {
    java.lang.Object ref = translatedText_;
    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();
      translatedText_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Text translated into the target language.
   * If an error occurs during translation, this field might be excluded from
   * the response.
   * </pre>
   *
   * <code>string translated_text = 1;</code>
   *
   * @return The bytes for translatedText.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getTranslatedTextBytes() {
    java.lang.Object ref = translatedText_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      translatedText_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int MODEL_FIELD_NUMBER = 2;

  @SuppressWarnings("serial")
  private volatile java.lang.Object model_ = "";
  /**
   *
   *
   * <pre>
   * Only present when `model` is present in the request.
   * `model` here is normalized to have project number.
   * For example:
   * If the `model` requested in TranslationTextRequest is
   * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
   * `model` here would be normalized to
   * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
   * </pre>
   *
   * <code>string model = 2;</code>
   *
   * @return The model.
   */
  @java.lang.Override
  public java.lang.String getModel() {
    java.lang.Object ref = model_;
    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();
      model_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Only present when `model` is present in the request.
   * `model` here is normalized to have project number.
   * For example:
   * If the `model` requested in TranslationTextRequest is
   * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
   * `model` here would be normalized to
   * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
   * </pre>
   *
   * <code>string model = 2;</code>
   *
   * @return The bytes for model.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getModelBytes() {
    java.lang.Object ref = model_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      model_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int DETECTED_LANGUAGE_CODE_FIELD_NUMBER = 4;

  @SuppressWarnings("serial")
  private volatile java.lang.Object detectedLanguageCode_ = "";
  /**
   *
   *
   * <pre>
   * The ISO-639 language code of source text in the initial request, detected
   * automatically, if no source language was passed within the initial
   * request. If the source language was passed, auto-detection of the language
   * does not occur and this field is empty.
   * </pre>
   *
   * <code>string detected_language_code = 4;</code>
   *
   * @return The detectedLanguageCode.
   */
  @java.lang.Override
  public java.lang.String getDetectedLanguageCode() {
    java.lang.Object ref = detectedLanguageCode_;
    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();
      detectedLanguageCode_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * The ISO-639 language code of source text in the initial request, detected
   * automatically, if no source language was passed within the initial
   * request. If the source language was passed, auto-detection of the language
   * does not occur and this field is empty.
   * </pre>
   *
   * <code>string detected_language_code = 4;</code>
   *
   * @return The bytes for detectedLanguageCode.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getDetectedLanguageCodeBytes() {
    java.lang.Object ref = detectedLanguageCode_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      detectedLanguageCode_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int GLOSSARY_CONFIG_FIELD_NUMBER = 3;
  private com.google.cloud.translate.v3.TranslateTextGlossaryConfig glossaryConfig_;
  /**
   *
   *
   * <pre>
   * The `glossary_config` used for this translation.
   * </pre>
   *
   * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
   *
   * @return Whether the glossaryConfig field is set.
   */
  @java.lang.Override
  public boolean hasGlossaryConfig() {
    return glossaryConfig_ != null;
  }
  /**
   *
   *
   * <pre>
   * The `glossary_config` used for this translation.
   * </pre>
   *
   * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
   *
   * @return The glossaryConfig.
   */
  @java.lang.Override
  public com.google.cloud.translate.v3.TranslateTextGlossaryConfig getGlossaryConfig() {
    return glossaryConfig_ == null
        ? com.google.cloud.translate.v3.TranslateTextGlossaryConfig.getDefaultInstance()
        : glossaryConfig_;
  }
  /**
   *
   *
   * <pre>
   * The `glossary_config` used for this translation.
   * </pre>
   *
   * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
   */
  @java.lang.Override
  public com.google.cloud.translate.v3.TranslateTextGlossaryConfigOrBuilder
      getGlossaryConfigOrBuilder() {
    return glossaryConfig_ == null
        ? com.google.cloud.translate.v3.TranslateTextGlossaryConfig.getDefaultInstance()
        : glossaryConfig_;
  }

  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(translatedText_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 1, translatedText_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(model_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, model_);
    }
    if (glossaryConfig_ != null) {
      output.writeMessage(3, getGlossaryConfig());
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(detectedLanguageCode_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 4, detectedLanguageCode_);
    }
    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(translatedText_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, translatedText_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(model_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, model_);
    }
    if (glossaryConfig_ != null) {
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getGlossaryConfig());
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(detectedLanguageCode_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, detectedLanguageCode_);
    }
    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.translate.v3.Translation)) {
      return super.equals(obj);
    }
    com.google.cloud.translate.v3.Translation other =
        (com.google.cloud.translate.v3.Translation) obj;

    if (!getTranslatedText().equals(other.getTranslatedText())) return false;
    if (!getModel().equals(other.getModel())) return false;
    if (!getDetectedLanguageCode().equals(other.getDetectedLanguageCode())) return false;
    if (hasGlossaryConfig() != other.hasGlossaryConfig()) return false;
    if (hasGlossaryConfig()) {
      if (!getGlossaryConfig().equals(other.getGlossaryConfig())) 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) + TRANSLATED_TEXT_FIELD_NUMBER;
    hash = (53 * hash) + getTranslatedText().hashCode();
    hash = (37 * hash) + MODEL_FIELD_NUMBER;
    hash = (53 * hash) + getModel().hashCode();
    hash = (37 * hash) + DETECTED_LANGUAGE_CODE_FIELD_NUMBER;
    hash = (53 * hash) + getDetectedLanguageCode().hashCode();
    if (hasGlossaryConfig()) {
      hash = (37 * hash) + GLOSSARY_CONFIG_FIELD_NUMBER;
      hash = (53 * hash) + getGlossaryConfig().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.google.cloud.translate.v3.Translation parseFrom(java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.translate.v3.Translation 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.translate.v3.Translation parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.translate.v3.Translation 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.translate.v3.Translation parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.translate.v3.Translation parseFrom(
      byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.translate.v3.Translation parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.translate.v3.Translation 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.translate.v3.Translation parseDelimitedFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.cloud.translate.v3.Translation 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.translate.v3.Translation parseFrom(
      com.google.protobuf.CodedInputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.translate.v3.Translation 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.translate.v3.Translation 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;
  }
  /**
   *
   *
   * <pre>
   * A single translation response.
   * </pre>
   *
   * Protobuf type {@code google.cloud.translation.v3.Translation}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.translation.v3.Translation)
      com.google.cloud.translate.v3.TranslationOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.translate.v3.TranslationServiceProto
          .internal_static_google_cloud_translation_v3_Translation_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.cloud.translate.v3.TranslationServiceProto
          .internal_static_google_cloud_translation_v3_Translation_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.cloud.translate.v3.Translation.class,
              com.google.cloud.translate.v3.Translation.Builder.class);
    }

    // Construct using com.google.cloud.translate.v3.Translation.newBuilder()
    private Builder() {}

    private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
    }

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      translatedText_ = "";
      model_ = "";
      detectedLanguageCode_ = "";
      glossaryConfig_ = null;
      if (glossaryConfigBuilder_ != null) {
        glossaryConfigBuilder_.dispose();
        glossaryConfigBuilder_ = null;
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.cloud.translate.v3.TranslationServiceProto
          .internal_static_google_cloud_translation_v3_Translation_descriptor;
    }

    @java.lang.Override
    public com.google.cloud.translate.v3.Translation getDefaultInstanceForType() {
      return com.google.cloud.translate.v3.Translation.getDefaultInstance();
    }

    @java.lang.Override
    public com.google.cloud.translate.v3.Translation build() {
      com.google.cloud.translate.v3.Translation result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.google.cloud.translate.v3.Translation buildPartial() {
      com.google.cloud.translate.v3.Translation result =
          new com.google.cloud.translate.v3.Translation(this);
      if (bitField0_ != 0) {
        buildPartial0(result);
      }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.google.cloud.translate.v3.Translation result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.translatedText_ = translatedText_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.model_ = model_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.detectedLanguageCode_ = detectedLanguageCode_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.glossaryConfig_ =
            glossaryConfigBuilder_ == null ? glossaryConfig_ : glossaryConfigBuilder_.build();
      }
    }

    @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.translate.v3.Translation) {
        return mergeFrom((com.google.cloud.translate.v3.Translation) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.google.cloud.translate.v3.Translation other) {
      if (other == com.google.cloud.translate.v3.Translation.getDefaultInstance()) return this;
      if (!other.getTranslatedText().isEmpty()) {
        translatedText_ = other.translatedText_;
        bitField0_ |= 0x00000001;
        onChanged();
      }
      if (!other.getModel().isEmpty()) {
        model_ = other.model_;
        bitField0_ |= 0x00000002;
        onChanged();
      }
      if (!other.getDetectedLanguageCode().isEmpty()) {
        detectedLanguageCode_ = other.detectedLanguageCode_;
        bitField0_ |= 0x00000004;
        onChanged();
      }
      if (other.hasGlossaryConfig()) {
        mergeGlossaryConfig(other.getGlossaryConfig());
      }
      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:
              {
                translatedText_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000001;
                break;
              } // case 10
            case 18:
              {
                model_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000002;
                break;
              } // case 18
            case 26:
              {
                input.readMessage(getGlossaryConfigFieldBuilder().getBuilder(), extensionRegistry);
                bitField0_ |= 0x00000008;
                break;
              } // case 26
            case 34:
              {
                detectedLanguageCode_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000004;
                break;
              } // case 34
            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 translatedText_ = "";
    /**
     *
     *
     * <pre>
     * Text translated into the target language.
     * If an error occurs during translation, this field might be excluded from
     * the response.
     * </pre>
     *
     * <code>string translated_text = 1;</code>
     *
     * @return The translatedText.
     */
    public java.lang.String getTranslatedText() {
      java.lang.Object ref = translatedText_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        translatedText_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Text translated into the target language.
     * If an error occurs during translation, this field might be excluded from
     * the response.
     * </pre>
     *
     * <code>string translated_text = 1;</code>
     *
     * @return The bytes for translatedText.
     */
    public com.google.protobuf.ByteString getTranslatedTextBytes() {
      java.lang.Object ref = translatedText_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        translatedText_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Text translated into the target language.
     * If an error occurs during translation, this field might be excluded from
     * the response.
     * </pre>
     *
     * <code>string translated_text = 1;</code>
     *
     * @param value The translatedText to set.
     * @return This builder for chaining.
     */
    public Builder setTranslatedText(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      translatedText_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Text translated into the target language.
     * If an error occurs during translation, this field might be excluded from
     * the response.
     * </pre>
     *
     * <code>string translated_text = 1;</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearTranslatedText() {
      translatedText_ = getDefaultInstance().getTranslatedText();
      bitField0_ = (bitField0_ & ~0x00000001);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Text translated into the target language.
     * If an error occurs during translation, this field might be excluded from
     * the response.
     * </pre>
     *
     * <code>string translated_text = 1;</code>
     *
     * @param value The bytes for translatedText to set.
     * @return This builder for chaining.
     */
    public Builder setTranslatedTextBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      translatedText_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }

    private java.lang.Object model_ = "";
    /**
     *
     *
     * <pre>
     * Only present when `model` is present in the request.
     * `model` here is normalized to have project number.
     * For example:
     * If the `model` requested in TranslationTextRequest is
     * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
     * `model` here would be normalized to
     * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
     * </pre>
     *
     * <code>string model = 2;</code>
     *
     * @return The model.
     */
    public java.lang.String getModel() {
      java.lang.Object ref = model_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        model_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Only present when `model` is present in the request.
     * `model` here is normalized to have project number.
     * For example:
     * If the `model` requested in TranslationTextRequest is
     * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
     * `model` here would be normalized to
     * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
     * </pre>
     *
     * <code>string model = 2;</code>
     *
     * @return The bytes for model.
     */
    public com.google.protobuf.ByteString getModelBytes() {
      java.lang.Object ref = model_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        model_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Only present when `model` is present in the request.
     * `model` here is normalized to have project number.
     * For example:
     * If the `model` requested in TranslationTextRequest is
     * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
     * `model` here would be normalized to
     * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
     * </pre>
     *
     * <code>string model = 2;</code>
     *
     * @param value The model to set.
     * @return This builder for chaining.
     */
    public Builder setModel(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      model_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Only present when `model` is present in the request.
     * `model` here is normalized to have project number.
     * For example:
     * If the `model` requested in TranslationTextRequest is
     * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
     * `model` here would be normalized to
     * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
     * </pre>
     *
     * <code>string model = 2;</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearModel() {
      model_ = getDefaultInstance().getModel();
      bitField0_ = (bitField0_ & ~0x00000002);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Only present when `model` is present in the request.
     * `model` here is normalized to have project number.
     * For example:
     * If the `model` requested in TranslationTextRequest is
     * `projects/{project-id}/locations/{location-id}/models/general/nmt` then
     * `model` here would be normalized to
     * `projects/{project-number}/locations/{location-id}/models/general/nmt`.
     * </pre>
     *
     * <code>string model = 2;</code>
     *
     * @param value The bytes for model to set.
     * @return This builder for chaining.
     */
    public Builder setModelBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      model_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }

    private java.lang.Object detectedLanguageCode_ = "";
    /**
     *
     *
     * <pre>
     * The ISO-639 language code of source text in the initial request, detected
     * automatically, if no source language was passed within the initial
     * request. If the source language was passed, auto-detection of the language
     * does not occur and this field is empty.
     * </pre>
     *
     * <code>string detected_language_code = 4;</code>
     *
     * @return The detectedLanguageCode.
     */
    public java.lang.String getDetectedLanguageCode() {
      java.lang.Object ref = detectedLanguageCode_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        detectedLanguageCode_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * The ISO-639 language code of source text in the initial request, detected
     * automatically, if no source language was passed within the initial
     * request. If the source language was passed, auto-detection of the language
     * does not occur and this field is empty.
     * </pre>
     *
     * <code>string detected_language_code = 4;</code>
     *
     * @return The bytes for detectedLanguageCode.
     */
    public com.google.protobuf.ByteString getDetectedLanguageCodeBytes() {
      java.lang.Object ref = detectedLanguageCode_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        detectedLanguageCode_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * The ISO-639 language code of source text in the initial request, detected
     * automatically, if no source language was passed within the initial
     * request. If the source language was passed, auto-detection of the language
     * does not occur and this field is empty.
     * </pre>
     *
     * <code>string detected_language_code = 4;</code>
     *
     * @param value The detectedLanguageCode to set.
     * @return This builder for chaining.
     */
    public Builder setDetectedLanguageCode(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      detectedLanguageCode_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The ISO-639 language code of source text in the initial request, detected
     * automatically, if no source language was passed within the initial
     * request. If the source language was passed, auto-detection of the language
     * does not occur and this field is empty.
     * </pre>
     *
     * <code>string detected_language_code = 4;</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearDetectedLanguageCode() {
      detectedLanguageCode_ = getDefaultInstance().getDetectedLanguageCode();
      bitField0_ = (bitField0_ & ~0x00000004);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The ISO-639 language code of source text in the initial request, detected
     * automatically, if no source language was passed within the initial
     * request. If the source language was passed, auto-detection of the language
     * does not occur and this field is empty.
     * </pre>
     *
     * <code>string detected_language_code = 4;</code>
     *
     * @param value The bytes for detectedLanguageCode to set.
     * @return This builder for chaining.
     */
    public Builder setDetectedLanguageCodeBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      detectedLanguageCode_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }

    private com.google.cloud.translate.v3.TranslateTextGlossaryConfig glossaryConfig_;
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.translate.v3.TranslateTextGlossaryConfig,
            com.google.cloud.translate.v3.TranslateTextGlossaryConfig.Builder,
            com.google.cloud.translate.v3.TranslateTextGlossaryConfigOrBuilder>
        glossaryConfigBuilder_;
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     *
     * @return Whether the glossaryConfig field is set.
     */
    public boolean hasGlossaryConfig() {
      return ((bitField0_ & 0x00000008) != 0);
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     *
     * @return The glossaryConfig.
     */
    public com.google.cloud.translate.v3.TranslateTextGlossaryConfig getGlossaryConfig() {
      if (glossaryConfigBuilder_ == null) {
        return glossaryConfig_ == null
            ? com.google.cloud.translate.v3.TranslateTextGlossaryConfig.getDefaultInstance()
            : glossaryConfig_;
      } else {
        return glossaryConfigBuilder_.getMessage();
      }
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    public Builder setGlossaryConfig(
        com.google.cloud.translate.v3.TranslateTextGlossaryConfig value) {
      if (glossaryConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        glossaryConfig_ = value;
      } else {
        glossaryConfigBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    public Builder setGlossaryConfig(
        com.google.cloud.translate.v3.TranslateTextGlossaryConfig.Builder builderForValue) {
      if (glossaryConfigBuilder_ == null) {
        glossaryConfig_ = builderForValue.build();
      } else {
        glossaryConfigBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    public Builder mergeGlossaryConfig(
        com.google.cloud.translate.v3.TranslateTextGlossaryConfig value) {
      if (glossaryConfigBuilder_ == null) {
        if (((bitField0_ & 0x00000008) != 0)
            && glossaryConfig_ != null
            && glossaryConfig_
                != com.google.cloud.translate.v3.TranslateTextGlossaryConfig.getDefaultInstance()) {
          getGlossaryConfigBuilder().mergeFrom(value);
        } else {
          glossaryConfig_ = value;
        }
      } else {
        glossaryConfigBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    public Builder clearGlossaryConfig() {
      bitField0_ = (bitField0_ & ~0x00000008);
      glossaryConfig_ = null;
      if (glossaryConfigBuilder_ != null) {
        glossaryConfigBuilder_.dispose();
        glossaryConfigBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    public com.google.cloud.translate.v3.TranslateTextGlossaryConfig.Builder
        getGlossaryConfigBuilder() {
      bitField0_ |= 0x00000008;
      onChanged();
      return getGlossaryConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    public com.google.cloud.translate.v3.TranslateTextGlossaryConfigOrBuilder
        getGlossaryConfigOrBuilder() {
      if (glossaryConfigBuilder_ != null) {
        return glossaryConfigBuilder_.getMessageOrBuilder();
      } else {
        return glossaryConfig_ == null
            ? com.google.cloud.translate.v3.TranslateTextGlossaryConfig.getDefaultInstance()
            : glossaryConfig_;
      }
    }
    /**
     *
     *
     * <pre>
     * The `glossary_config` used for this translation.
     * </pre>
     *
     * <code>.google.cloud.translation.v3.TranslateTextGlossaryConfig glossary_config = 3;</code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.translate.v3.TranslateTextGlossaryConfig,
            com.google.cloud.translate.v3.TranslateTextGlossaryConfig.Builder,
            com.google.cloud.translate.v3.TranslateTextGlossaryConfigOrBuilder>
        getGlossaryConfigFieldBuilder() {
      if (glossaryConfigBuilder_ == null) {
        glossaryConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.translate.v3.TranslateTextGlossaryConfig,
                com.google.cloud.translate.v3.TranslateTextGlossaryConfig.Builder,
                com.google.cloud.translate.v3.TranslateTextGlossaryConfigOrBuilder>(
                getGlossaryConfig(), getParentForChildren(), isClean());
        glossaryConfig_ = null;
      }
      return glossaryConfigBuilder_;
    }

    @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.translation.v3.Translation)
  }

  // @@protoc_insertion_point(class_scope:google.cloud.translation.v3.Translation)
  private static final com.google.cloud.translate.v3.Translation DEFAULT_INSTANCE;

  static {
    DEFAULT_INSTANCE = new com.google.cloud.translate.v3.Translation();
  }

  public static com.google.cloud.translate.v3.Translation getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<Translation> PARSER =
      new com.google.protobuf.AbstractParser<Translation>() {
        @java.lang.Override
        public Translation 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<Translation> parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser<Translation> getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.cloud.translate.v3.Translation getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }
}
