/*
 * 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/dataproc/v1/jobs.proto

package com.google.cloud.dataproc.v1;

/**
 *
 *
 * <pre>
 * Dataproc job status.
 * </pre>
 *
 * Protobuf type {@code google.cloud.dataproc.v1.JobStatus}
 */
public final class JobStatus extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.dataproc.v1.JobStatus)
    JobStatusOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use JobStatus.newBuilder() to construct.
  private JobStatus(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private JobStatus() {
    state_ = 0;
    details_ = "";
    substate_ = 0;
  }

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

  @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.dataproc.v1.JobsProto
        .internal_static_google_cloud_dataproc_v1_JobStatus_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.dataproc.v1.JobsProto
        .internal_static_google_cloud_dataproc_v1_JobStatus_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.dataproc.v1.JobStatus.class,
            com.google.cloud.dataproc.v1.JobStatus.Builder.class);
  }

  /**
   *
   *
   * <pre>
   * The job state.
   * </pre>
   *
   * Protobuf enum {@code google.cloud.dataproc.v1.JobStatus.State}
   */
  public enum State implements com.google.protobuf.ProtocolMessageEnum {
    /**
     *
     *
     * <pre>
     * The job state is unknown.
     * </pre>
     *
     * <code>STATE_UNSPECIFIED = 0;</code>
     */
    STATE_UNSPECIFIED(0),
    /**
     *
     *
     * <pre>
     * The job is pending; it has been submitted, but is not yet running.
     * </pre>
     *
     * <code>PENDING = 1;</code>
     */
    PENDING(1),
    /**
     *
     *
     * <pre>
     * Job has been received by the service and completed initial setup;
     * it will soon be submitted to the cluster.
     * </pre>
     *
     * <code>SETUP_DONE = 8;</code>
     */
    SETUP_DONE(8),
    /**
     *
     *
     * <pre>
     * The job is running on the cluster.
     * </pre>
     *
     * <code>RUNNING = 2;</code>
     */
    RUNNING(2),
    /**
     *
     *
     * <pre>
     * A CancelJob request has been received, but is pending.
     * </pre>
     *
     * <code>CANCEL_PENDING = 3;</code>
     */
    CANCEL_PENDING(3),
    /**
     *
     *
     * <pre>
     * Transient in-flight resources have been canceled, and the request to
     * cancel the running job has been issued to the cluster.
     * </pre>
     *
     * <code>CANCEL_STARTED = 7;</code>
     */
    CANCEL_STARTED(7),
    /**
     *
     *
     * <pre>
     * The job cancellation was successful.
     * </pre>
     *
     * <code>CANCELLED = 4;</code>
     */
    CANCELLED(4),
    /**
     *
     *
     * <pre>
     * The job has completed successfully.
     * </pre>
     *
     * <code>DONE = 5;</code>
     */
    DONE(5),
    /**
     *
     *
     * <pre>
     * The job has completed, but encountered an error.
     * </pre>
     *
     * <code>ERROR = 6;</code>
     */
    ERROR(6),
    /**
     *
     *
     * <pre>
     * Job attempt has failed. The detail field contains failure details for
     * this attempt.
     * Applies to restartable jobs only.
     * </pre>
     *
     * <code>ATTEMPT_FAILURE = 9;</code>
     */
    ATTEMPT_FAILURE(9),
    UNRECOGNIZED(-1),
    ;

    /**
     *
     *
     * <pre>
     * The job state is unknown.
     * </pre>
     *
     * <code>STATE_UNSPECIFIED = 0;</code>
     */
    public static final int STATE_UNSPECIFIED_VALUE = 0;
    /**
     *
     *
     * <pre>
     * The job is pending; it has been submitted, but is not yet running.
     * </pre>
     *
     * <code>PENDING = 1;</code>
     */
    public static final int PENDING_VALUE = 1;
    /**
     *
     *
     * <pre>
     * Job has been received by the service and completed initial setup;
     * it will soon be submitted to the cluster.
     * </pre>
     *
     * <code>SETUP_DONE = 8;</code>
     */
    public static final int SETUP_DONE_VALUE = 8;
    /**
     *
     *
     * <pre>
     * The job is running on the cluster.
     * </pre>
     *
     * <code>RUNNING = 2;</code>
     */
    public static final int RUNNING_VALUE = 2;
    /**
     *
     *
     * <pre>
     * A CancelJob request has been received, but is pending.
     * </pre>
     *
     * <code>CANCEL_PENDING = 3;</code>
     */
    public static final int CANCEL_PENDING_VALUE = 3;
    /**
     *
     *
     * <pre>
     * Transient in-flight resources have been canceled, and the request to
     * cancel the running job has been issued to the cluster.
     * </pre>
     *
     * <code>CANCEL_STARTED = 7;</code>
     */
    public static final int CANCEL_STARTED_VALUE = 7;
    /**
     *
     *
     * <pre>
     * The job cancellation was successful.
     * </pre>
     *
     * <code>CANCELLED = 4;</code>
     */
    public static final int CANCELLED_VALUE = 4;
    /**
     *
     *
     * <pre>
     * The job has completed successfully.
     * </pre>
     *
     * <code>DONE = 5;</code>
     */
    public static final int DONE_VALUE = 5;
    /**
     *
     *
     * <pre>
     * The job has completed, but encountered an error.
     * </pre>
     *
     * <code>ERROR = 6;</code>
     */
    public static final int ERROR_VALUE = 6;
    /**
     *
     *
     * <pre>
     * Job attempt has failed. The detail field contains failure details for
     * this attempt.
     * Applies to restartable jobs only.
     * </pre>
     *
     * <code>ATTEMPT_FAILURE = 9;</code>
     */
    public static final int ATTEMPT_FAILURE_VALUE = 9;

    public final int getNumber() {
      if (this == UNRECOGNIZED) {
        throw new java.lang.IllegalArgumentException(
            "Can't get the number of an unknown enum value.");
      }
      return value;
    }

    /**
     * @param value The numeric wire value of the corresponding enum entry.
     * @return The enum associated with the given numeric wire value.
     * @deprecated Use {@link #forNumber(int)} instead.
     */
    @java.lang.Deprecated
    public static State valueOf(int value) {
      return forNumber(value);
    }

    /**
     * @param value The numeric wire value of the corresponding enum entry.
     * @return The enum associated with the given numeric wire value.
     */
    public static State forNumber(int value) {
      switch (value) {
        case 0:
          return STATE_UNSPECIFIED;
        case 1:
          return PENDING;
        case 8:
          return SETUP_DONE;
        case 2:
          return RUNNING;
        case 3:
          return CANCEL_PENDING;
        case 7:
          return CANCEL_STARTED;
        case 4:
          return CANCELLED;
        case 5:
          return DONE;
        case 6:
          return ERROR;
        case 9:
          return ATTEMPT_FAILURE;
        default:
          return null;
      }
    }

    public static com.google.protobuf.Internal.EnumLiteMap<State> internalGetValueMap() {
      return internalValueMap;
    }

    private static final com.google.protobuf.Internal.EnumLiteMap<State> internalValueMap =
        new com.google.protobuf.Internal.EnumLiteMap<State>() {
          public State findValueByNumber(int number) {
            return State.forNumber(number);
          }
        };

    public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
      if (this == UNRECOGNIZED) {
        throw new java.lang.IllegalStateException(
            "Can't get the descriptor of an unrecognized enum value.");
      }
      return getDescriptor().getValues().get(ordinal());
    }

    public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
      return getDescriptor();
    }

    public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
      return com.google.cloud.dataproc.v1.JobStatus.getDescriptor().getEnumTypes().get(0);
    }

    private static final State[] VALUES = values();

    public static State valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
      if (desc.getType() != getDescriptor()) {
        throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
      }
      if (desc.getIndex() == -1) {
        return UNRECOGNIZED;
      }
      return VALUES[desc.getIndex()];
    }

    private final int value;

    private State(int value) {
      this.value = value;
    }

    // @@protoc_insertion_point(enum_scope:google.cloud.dataproc.v1.JobStatus.State)
  }

  /**
   *
   *
   * <pre>
   * The job substate.
   * </pre>
   *
   * Protobuf enum {@code google.cloud.dataproc.v1.JobStatus.Substate}
   */
  public enum Substate implements com.google.protobuf.ProtocolMessageEnum {
    /**
     *
     *
     * <pre>
     * The job substate is unknown.
     * </pre>
     *
     * <code>UNSPECIFIED = 0;</code>
     */
    UNSPECIFIED(0),
    /**
     *
     *
     * <pre>
     * The Job is submitted to the agent.
     * Applies to RUNNING state.
     * </pre>
     *
     * <code>SUBMITTED = 1;</code>
     */
    SUBMITTED(1),
    /**
     *
     *
     * <pre>
     * The Job has been received and is awaiting execution (it may be waiting
     * for a condition to be met). See the "details" field for the reason for
     * the delay.
     * Applies to RUNNING state.
     * </pre>
     *
     * <code>QUEUED = 2;</code>
     */
    QUEUED(2),
    /**
     *
     *
     * <pre>
     * The agent-reported status is out of date, which may be caused by a
     * loss of communication between the agent and Dataproc. If the
     * agent does not send a timely update, the job will fail.
     * Applies to RUNNING state.
     * </pre>
     *
     * <code>STALE_STATUS = 3;</code>
     */
    STALE_STATUS(3),
    UNRECOGNIZED(-1),
    ;

    /**
     *
     *
     * <pre>
     * The job substate is unknown.
     * </pre>
     *
     * <code>UNSPECIFIED = 0;</code>
     */
    public static final int UNSPECIFIED_VALUE = 0;
    /**
     *
     *
     * <pre>
     * The Job is submitted to the agent.
     * Applies to RUNNING state.
     * </pre>
     *
     * <code>SUBMITTED = 1;</code>
     */
    public static final int SUBMITTED_VALUE = 1;
    /**
     *
     *
     * <pre>
     * The Job has been received and is awaiting execution (it may be waiting
     * for a condition to be met). See the "details" field for the reason for
     * the delay.
     * Applies to RUNNING state.
     * </pre>
     *
     * <code>QUEUED = 2;</code>
     */
    public static final int QUEUED_VALUE = 2;
    /**
     *
     *
     * <pre>
     * The agent-reported status is out of date, which may be caused by a
     * loss of communication between the agent and Dataproc. If the
     * agent does not send a timely update, the job will fail.
     * Applies to RUNNING state.
     * </pre>
     *
     * <code>STALE_STATUS = 3;</code>
     */
    public static final int STALE_STATUS_VALUE = 3;

    public final int getNumber() {
      if (this == UNRECOGNIZED) {
        throw new java.lang.IllegalArgumentException(
            "Can't get the number of an unknown enum value.");
      }
      return value;
    }

    /**
     * @param value The numeric wire value of the corresponding enum entry.
     * @return The enum associated with the given numeric wire value.
     * @deprecated Use {@link #forNumber(int)} instead.
     */
    @java.lang.Deprecated
    public static Substate valueOf(int value) {
      return forNumber(value);
    }

    /**
     * @param value The numeric wire value of the corresponding enum entry.
     * @return The enum associated with the given numeric wire value.
     */
    public static Substate forNumber(int value) {
      switch (value) {
        case 0:
          return UNSPECIFIED;
        case 1:
          return SUBMITTED;
        case 2:
          return QUEUED;
        case 3:
          return STALE_STATUS;
        default:
          return null;
      }
    }

    public static com.google.protobuf.Internal.EnumLiteMap<Substate> internalGetValueMap() {
      return internalValueMap;
    }

    private static final com.google.protobuf.Internal.EnumLiteMap<Substate> internalValueMap =
        new com.google.protobuf.Internal.EnumLiteMap<Substate>() {
          public Substate findValueByNumber(int number) {
            return Substate.forNumber(number);
          }
        };

    public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
      if (this == UNRECOGNIZED) {
        throw new java.lang.IllegalStateException(
            "Can't get the descriptor of an unrecognized enum value.");
      }
      return getDescriptor().getValues().get(ordinal());
    }

    public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
      return getDescriptor();
    }

    public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
      return com.google.cloud.dataproc.v1.JobStatus.getDescriptor().getEnumTypes().get(1);
    }

    private static final Substate[] VALUES = values();

    public static Substate valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
      if (desc.getType() != getDescriptor()) {
        throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
      }
      if (desc.getIndex() == -1) {
        return UNRECOGNIZED;
      }
      return VALUES[desc.getIndex()];
    }

    private final int value;

    private Substate(int value) {
      this.value = value;
    }

    // @@protoc_insertion_point(enum_scope:google.cloud.dataproc.v1.JobStatus.Substate)
  }

  public static final int STATE_FIELD_NUMBER = 1;
  private int state_ = 0;
  /**
   *
   *
   * <pre>
   * Output only. A state message specifying the overall job state.
   * </pre>
   *
   * <code>
   * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   *
   * @return The enum numeric value on the wire for state.
   */
  @java.lang.Override
  public int getStateValue() {
    return state_;
  }
  /**
   *
   *
   * <pre>
   * Output only. A state message specifying the overall job state.
   * </pre>
   *
   * <code>
   * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   *
   * @return The state.
   */
  @java.lang.Override
  public com.google.cloud.dataproc.v1.JobStatus.State getState() {
    com.google.cloud.dataproc.v1.JobStatus.State result =
        com.google.cloud.dataproc.v1.JobStatus.State.forNumber(state_);
    return result == null ? com.google.cloud.dataproc.v1.JobStatus.State.UNRECOGNIZED : result;
  }

  public static final int DETAILS_FIELD_NUMBER = 2;

  @SuppressWarnings("serial")
  private volatile java.lang.Object details_ = "";
  /**
   *
   *
   * <pre>
   * Optional. Output only. Job state details, such as an error
   * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
   * </pre>
   *
   * <code>
   * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
   * </code>
   *
   * @return The details.
   */
  @java.lang.Override
  public java.lang.String getDetails() {
    java.lang.Object ref = details_;
    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();
      details_ = s;
      return s;
    }
  }
  /**
   *
   *
   * <pre>
   * Optional. Output only. Job state details, such as an error
   * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
   * </pre>
   *
   * <code>
   * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
   * </code>
   *
   * @return The bytes for details.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getDetailsBytes() {
    java.lang.Object ref = details_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b =
          com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
      details_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int STATE_START_TIME_FIELD_NUMBER = 6;
  private com.google.protobuf.Timestamp stateStartTime_;
  /**
   *
   *
   * <pre>
   * Output only. The time when this state was entered.
   * </pre>
   *
   * <code>
   * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   *
   * @return Whether the stateStartTime field is set.
   */
  @java.lang.Override
  public boolean hasStateStartTime() {
    return stateStartTime_ != null;
  }
  /**
   *
   *
   * <pre>
   * Output only. The time when this state was entered.
   * </pre>
   *
   * <code>
   * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   *
   * @return The stateStartTime.
   */
  @java.lang.Override
  public com.google.protobuf.Timestamp getStateStartTime() {
    return stateStartTime_ == null
        ? com.google.protobuf.Timestamp.getDefaultInstance()
        : stateStartTime_;
  }
  /**
   *
   *
   * <pre>
   * Output only. The time when this state was entered.
   * </pre>
   *
   * <code>
   * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   */
  @java.lang.Override
  public com.google.protobuf.TimestampOrBuilder getStateStartTimeOrBuilder() {
    return stateStartTime_ == null
        ? com.google.protobuf.Timestamp.getDefaultInstance()
        : stateStartTime_;
  }

  public static final int SUBSTATE_FIELD_NUMBER = 7;
  private int substate_ = 0;
  /**
   *
   *
   * <pre>
   * Output only. Additional state information, which includes
   * status reported by the agent.
   * </pre>
   *
   * <code>
   * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   *
   * @return The enum numeric value on the wire for substate.
   */
  @java.lang.Override
  public int getSubstateValue() {
    return substate_;
  }
  /**
   *
   *
   * <pre>
   * Output only. Additional state information, which includes
   * status reported by the agent.
   * </pre>
   *
   * <code>
   * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
   * </code>
   *
   * @return The substate.
   */
  @java.lang.Override
  public com.google.cloud.dataproc.v1.JobStatus.Substate getSubstate() {
    com.google.cloud.dataproc.v1.JobStatus.Substate result =
        com.google.cloud.dataproc.v1.JobStatus.Substate.forNumber(substate_);
    return result == null ? com.google.cloud.dataproc.v1.JobStatus.Substate.UNRECOGNIZED : result;
  }

  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 (state_ != com.google.cloud.dataproc.v1.JobStatus.State.STATE_UNSPECIFIED.getNumber()) {
      output.writeEnum(1, state_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(details_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, details_);
    }
    if (stateStartTime_ != null) {
      output.writeMessage(6, getStateStartTime());
    }
    if (substate_ != com.google.cloud.dataproc.v1.JobStatus.Substate.UNSPECIFIED.getNumber()) {
      output.writeEnum(7, substate_);
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (state_ != com.google.cloud.dataproc.v1.JobStatus.State.STATE_UNSPECIFIED.getNumber()) {
      size += com.google.protobuf.CodedOutputStream.computeEnumSize(1, state_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(details_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, details_);
    }
    if (stateStartTime_ != null) {
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getStateStartTime());
    }
    if (substate_ != com.google.cloud.dataproc.v1.JobStatus.Substate.UNSPECIFIED.getNumber()) {
      size += com.google.protobuf.CodedOutputStream.computeEnumSize(7, substate_);
    }
    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.dataproc.v1.JobStatus)) {
      return super.equals(obj);
    }
    com.google.cloud.dataproc.v1.JobStatus other = (com.google.cloud.dataproc.v1.JobStatus) obj;

    if (state_ != other.state_) return false;
    if (!getDetails().equals(other.getDetails())) return false;
    if (hasStateStartTime() != other.hasStateStartTime()) return false;
    if (hasStateStartTime()) {
      if (!getStateStartTime().equals(other.getStateStartTime())) return false;
    }
    if (substate_ != other.substate_) 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) + STATE_FIELD_NUMBER;
    hash = (53 * hash) + state_;
    hash = (37 * hash) + DETAILS_FIELD_NUMBER;
    hash = (53 * hash) + getDetails().hashCode();
    if (hasStateStartTime()) {
      hash = (37 * hash) + STATE_START_TIME_FIELD_NUMBER;
      hash = (53 * hash) + getStateStartTime().hashCode();
    }
    hash = (37 * hash) + SUBSTATE_FIELD_NUMBER;
    hash = (53 * hash) + substate_;
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.google.cloud.dataproc.v1.JobStatus parseFrom(java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

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

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

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

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

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

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

  public static com.google.cloud.dataproc.v1.JobStatus 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.dataproc.v1.JobStatus 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>
   * Dataproc job status.
   * </pre>
   *
   * Protobuf type {@code google.cloud.dataproc.v1.JobStatus}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.dataproc.v1.JobStatus)
      com.google.cloud.dataproc.v1.JobStatusOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.dataproc.v1.JobsProto
          .internal_static_google_cloud_dataproc_v1_JobStatus_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.cloud.dataproc.v1.JobsProto
          .internal_static_google_cloud_dataproc_v1_JobStatus_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.cloud.dataproc.v1.JobStatus.class,
              com.google.cloud.dataproc.v1.JobStatus.Builder.class);
    }

    // Construct using com.google.cloud.dataproc.v1.JobStatus.newBuilder()
    private Builder() {}

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

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      state_ = 0;
      details_ = "";
      stateStartTime_ = null;
      if (stateStartTimeBuilder_ != null) {
        stateStartTimeBuilder_.dispose();
        stateStartTimeBuilder_ = null;
      }
      substate_ = 0;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.cloud.dataproc.v1.JobsProto
          .internal_static_google_cloud_dataproc_v1_JobStatus_descriptor;
    }

    @java.lang.Override
    public com.google.cloud.dataproc.v1.JobStatus getDefaultInstanceForType() {
      return com.google.cloud.dataproc.v1.JobStatus.getDefaultInstance();
    }

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

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

    private void buildPartial0(com.google.cloud.dataproc.v1.JobStatus result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.state_ = state_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.details_ = details_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.stateStartTime_ =
            stateStartTimeBuilder_ == null ? stateStartTime_ : stateStartTimeBuilder_.build();
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.substate_ = substate_;
      }
    }

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

    public Builder mergeFrom(com.google.cloud.dataproc.v1.JobStatus other) {
      if (other == com.google.cloud.dataproc.v1.JobStatus.getDefaultInstance()) return this;
      if (other.state_ != 0) {
        setStateValue(other.getStateValue());
      }
      if (!other.getDetails().isEmpty()) {
        details_ = other.details_;
        bitField0_ |= 0x00000002;
        onChanged();
      }
      if (other.hasStateStartTime()) {
        mergeStateStartTime(other.getStateStartTime());
      }
      if (other.substate_ != 0) {
        setSubstateValue(other.getSubstateValue());
      }
      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 8:
              {
                state_ = input.readEnum();
                bitField0_ |= 0x00000001;
                break;
              } // case 8
            case 18:
              {
                details_ = input.readStringRequireUtf8();
                bitField0_ |= 0x00000002;
                break;
              } // case 18
            case 50:
              {
                input.readMessage(getStateStartTimeFieldBuilder().getBuilder(), extensionRegistry);
                bitField0_ |= 0x00000004;
                break;
              } // case 50
            case 56:
              {
                substate_ = input.readEnum();
                bitField0_ |= 0x00000008;
                break;
              } // case 56
            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 int state_ = 0;
    /**
     *
     *
     * <pre>
     * Output only. A state message specifying the overall job state.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return The enum numeric value on the wire for state.
     */
    @java.lang.Override
    public int getStateValue() {
      return state_;
    }
    /**
     *
     *
     * <pre>
     * Output only. A state message specifying the overall job state.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @param value The enum numeric value on the wire for state to set.
     * @return This builder for chaining.
     */
    public Builder setStateValue(int value) {
      state_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. A state message specifying the overall job state.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return The state.
     */
    @java.lang.Override
    public com.google.cloud.dataproc.v1.JobStatus.State getState() {
      com.google.cloud.dataproc.v1.JobStatus.State result =
          com.google.cloud.dataproc.v1.JobStatus.State.forNumber(state_);
      return result == null ? com.google.cloud.dataproc.v1.JobStatus.State.UNRECOGNIZED : result;
    }
    /**
     *
     *
     * <pre>
     * Output only. A state message specifying the overall job state.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @param value The state to set.
     * @return This builder for chaining.
     */
    public Builder setState(com.google.cloud.dataproc.v1.JobStatus.State value) {
      if (value == null) {
        throw new NullPointerException();
      }
      bitField0_ |= 0x00000001;
      state_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. A state message specifying the overall job state.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.State state = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return This builder for chaining.
     */
    public Builder clearState() {
      bitField0_ = (bitField0_ & ~0x00000001);
      state_ = 0;
      onChanged();
      return this;
    }

    private java.lang.Object details_ = "";
    /**
     *
     *
     * <pre>
     * Optional. Output only. Job state details, such as an error
     * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
     * </pre>
     *
     * <code>
     * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @return The details.
     */
    public java.lang.String getDetails() {
      java.lang.Object ref = details_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        details_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. Output only. Job state details, such as an error
     * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
     * </pre>
     *
     * <code>
     * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @return The bytes for details.
     */
    public com.google.protobuf.ByteString getDetailsBytes() {
      java.lang.Object ref = details_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b =
            com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
        details_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     *
     *
     * <pre>
     * Optional. Output only. Job state details, such as an error
     * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
     * </pre>
     *
     * <code>
     * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @param value The details to set.
     * @return This builder for chaining.
     */
    public Builder setDetails(java.lang.String value) {
      if (value == null) {
        throw new NullPointerException();
      }
      details_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. Output only. Job state details, such as an error
     * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
     * </pre>
     *
     * <code>
     * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @return This builder for chaining.
     */
    public Builder clearDetails() {
      details_ = getDefaultInstance().getDetails();
      bitField0_ = (bitField0_ & ~0x00000002);
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Optional. Output only. Job state details, such as an error
     * description if the state is &lt;code&gt;ERROR&lt;/code&gt;.
     * </pre>
     *
     * <code>
     * string details = 2 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
     * </code>
     *
     * @param value The bytes for details to set.
     * @return This builder for chaining.
     */
    public Builder setDetailsBytes(com.google.protobuf.ByteString value) {
      if (value == null) {
        throw new NullPointerException();
      }
      checkByteStringIsUtf8(value);
      details_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }

    private com.google.protobuf.Timestamp stateStartTime_;
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.protobuf.Timestamp,
            com.google.protobuf.Timestamp.Builder,
            com.google.protobuf.TimestampOrBuilder>
        stateStartTimeBuilder_;
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return Whether the stateStartTime field is set.
     */
    public boolean hasStateStartTime() {
      return ((bitField0_ & 0x00000004) != 0);
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return The stateStartTime.
     */
    public com.google.protobuf.Timestamp getStateStartTime() {
      if (stateStartTimeBuilder_ == null) {
        return stateStartTime_ == null
            ? com.google.protobuf.Timestamp.getDefaultInstance()
            : stateStartTime_;
      } else {
        return stateStartTimeBuilder_.getMessage();
      }
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    public Builder setStateStartTime(com.google.protobuf.Timestamp value) {
      if (stateStartTimeBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        stateStartTime_ = value;
      } else {
        stateStartTimeBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    public Builder setStateStartTime(com.google.protobuf.Timestamp.Builder builderForValue) {
      if (stateStartTimeBuilder_ == null) {
        stateStartTime_ = builderForValue.build();
      } else {
        stateStartTimeBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    public Builder mergeStateStartTime(com.google.protobuf.Timestamp value) {
      if (stateStartTimeBuilder_ == null) {
        if (((bitField0_ & 0x00000004) != 0)
            && stateStartTime_ != null
            && stateStartTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
          getStateStartTimeBuilder().mergeFrom(value);
        } else {
          stateStartTime_ = value;
        }
      } else {
        stateStartTimeBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    public Builder clearStateStartTime() {
      bitField0_ = (bitField0_ & ~0x00000004);
      stateStartTime_ = null;
      if (stateStartTimeBuilder_ != null) {
        stateStartTimeBuilder_.dispose();
        stateStartTimeBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    public com.google.protobuf.Timestamp.Builder getStateStartTimeBuilder() {
      bitField0_ |= 0x00000004;
      onChanged();
      return getStateStartTimeFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    public com.google.protobuf.TimestampOrBuilder getStateStartTimeOrBuilder() {
      if (stateStartTimeBuilder_ != null) {
        return stateStartTimeBuilder_.getMessageOrBuilder();
      } else {
        return stateStartTime_ == null
            ? com.google.protobuf.Timestamp.getDefaultInstance()
            : stateStartTime_;
      }
    }
    /**
     *
     *
     * <pre>
     * Output only. The time when this state was entered.
     * </pre>
     *
     * <code>
     * .google.protobuf.Timestamp state_start_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.protobuf.Timestamp,
            com.google.protobuf.Timestamp.Builder,
            com.google.protobuf.TimestampOrBuilder>
        getStateStartTimeFieldBuilder() {
      if (stateStartTimeBuilder_ == null) {
        stateStartTimeBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.protobuf.Timestamp,
                com.google.protobuf.Timestamp.Builder,
                com.google.protobuf.TimestampOrBuilder>(
                getStateStartTime(), getParentForChildren(), isClean());
        stateStartTime_ = null;
      }
      return stateStartTimeBuilder_;
    }

    private int substate_ = 0;
    /**
     *
     *
     * <pre>
     * Output only. Additional state information, which includes
     * status reported by the agent.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return The enum numeric value on the wire for substate.
     */
    @java.lang.Override
    public int getSubstateValue() {
      return substate_;
    }
    /**
     *
     *
     * <pre>
     * Output only. Additional state information, which includes
     * status reported by the agent.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @param value The enum numeric value on the wire for substate to set.
     * @return This builder for chaining.
     */
    public Builder setSubstateValue(int value) {
      substate_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. Additional state information, which includes
     * status reported by the agent.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return The substate.
     */
    @java.lang.Override
    public com.google.cloud.dataproc.v1.JobStatus.Substate getSubstate() {
      com.google.cloud.dataproc.v1.JobStatus.Substate result =
          com.google.cloud.dataproc.v1.JobStatus.Substate.forNumber(substate_);
      return result == null ? com.google.cloud.dataproc.v1.JobStatus.Substate.UNRECOGNIZED : result;
    }
    /**
     *
     *
     * <pre>
     * Output only. Additional state information, which includes
     * status reported by the agent.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @param value The substate to set.
     * @return This builder for chaining.
     */
    public Builder setSubstate(com.google.cloud.dataproc.v1.JobStatus.Substate value) {
      if (value == null) {
        throw new NullPointerException();
      }
      bitField0_ |= 0x00000008;
      substate_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Output only. Additional state information, which includes
     * status reported by the agent.
     * </pre>
     *
     * <code>
     * .google.cloud.dataproc.v1.JobStatus.Substate substate = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
     * </code>
     *
     * @return This builder for chaining.
     */
    public Builder clearSubstate() {
      bitField0_ = (bitField0_ & ~0x00000008);
      substate_ = 0;
      onChanged();
      return this;
    }

    @java.lang.Override
    public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }

    // @@protoc_insertion_point(builder_scope:google.cloud.dataproc.v1.JobStatus)
  }

  // @@protoc_insertion_point(class_scope:google.cloud.dataproc.v1.JobStatus)
  private static final com.google.cloud.dataproc.v1.JobStatus DEFAULT_INSTANCE;

  static {
    DEFAULT_INSTANCE = new com.google.cloud.dataproc.v1.JobStatus();
  }

  public static com.google.cloud.dataproc.v1.JobStatus getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

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

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

  @java.lang.Override
  public com.google.cloud.dataproc.v1.JobStatus getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }
}
