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

com.google.cloud.dataproc.v1.WorkflowNode Maven / Gradle / Ivy

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

// Protobuf Java Version: 3.25.5
package com.google.cloud.dataproc.v1;

/**
 *
 *
 * 
 * The workflow node.
 * 
* * Protobuf type {@code google.cloud.dataproc.v1.WorkflowNode} */ public final class WorkflowNode extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dataproc.v1.WorkflowNode) WorkflowNodeOrBuilder { private static final long serialVersionUID = 0L; // Use WorkflowNode.newBuilder() to construct. private WorkflowNode(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private WorkflowNode() { stepId_ = ""; prerequisiteStepIds_ = com.google.protobuf.LazyStringArrayList.emptyList(); jobId_ = ""; state_ = 0; error_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new WorkflowNode(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dataproc.v1.WorkflowTemplatesProto .internal_static_google_cloud_dataproc_v1_WorkflowNode_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dataproc.v1.WorkflowTemplatesProto .internal_static_google_cloud_dataproc_v1_WorkflowNode_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dataproc.v1.WorkflowNode.class, com.google.cloud.dataproc.v1.WorkflowNode.Builder.class); } /** * * *
   * The workflow node state.
   * 
* * Protobuf enum {@code google.cloud.dataproc.v1.WorkflowNode.NodeState} */ public enum NodeState implements com.google.protobuf.ProtocolMessageEnum { /** * * *
     * State is unspecified.
     * 
* * NODE_STATE_UNSPECIFIED = 0; */ NODE_STATE_UNSPECIFIED(0), /** * * *
     * The node is awaiting prerequisite node to finish.
     * 
* * BLOCKED = 1; */ BLOCKED(1), /** * * *
     * The node is runnable but not running.
     * 
* * RUNNABLE = 2; */ RUNNABLE(2), /** * * *
     * The node is running.
     * 
* * RUNNING = 3; */ RUNNING(3), /** * * *
     * The node completed successfully.
     * 
* * COMPLETED = 4; */ COMPLETED(4), /** * * *
     * The node failed. A node can be marked FAILED because
     * its ancestor or peer failed.
     * 
* * FAILED = 5; */ FAILED(5), UNRECOGNIZED(-1), ; /** * * *
     * State is unspecified.
     * 
* * NODE_STATE_UNSPECIFIED = 0; */ public static final int NODE_STATE_UNSPECIFIED_VALUE = 0; /** * * *
     * The node is awaiting prerequisite node to finish.
     * 
* * BLOCKED = 1; */ public static final int BLOCKED_VALUE = 1; /** * * *
     * The node is runnable but not running.
     * 
* * RUNNABLE = 2; */ public static final int RUNNABLE_VALUE = 2; /** * * *
     * The node is running.
     * 
* * RUNNING = 3; */ public static final int RUNNING_VALUE = 3; /** * * *
     * The node completed successfully.
     * 
* * COMPLETED = 4; */ public static final int COMPLETED_VALUE = 4; /** * * *
     * The node failed. A node can be marked FAILED because
     * its ancestor or peer failed.
     * 
* * FAILED = 5; */ public static final int FAILED_VALUE = 5; 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 NodeState 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 NodeState forNumber(int value) { switch (value) { case 0: return NODE_STATE_UNSPECIFIED; case 1: return BLOCKED; case 2: return RUNNABLE; case 3: return RUNNING; case 4: return COMPLETED; case 5: return FAILED; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public NodeState findValueByNumber(int number) { return NodeState.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.WorkflowNode.getDescriptor().getEnumTypes().get(0); } private static final NodeState[] VALUES = values(); public static NodeState 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 NodeState(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:google.cloud.dataproc.v1.WorkflowNode.NodeState) } public static final int STEP_ID_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object stepId_ = ""; /** * * *
   * Output only. The name of the node.
   * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The stepId. */ @java.lang.Override public java.lang.String getStepId() { java.lang.Object ref = stepId_; 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(); stepId_ = s; return s; } } /** * * *
   * Output only. The name of the node.
   * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for stepId. */ @java.lang.Override public com.google.protobuf.ByteString getStepIdBytes() { java.lang.Object ref = stepId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); stepId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PREREQUISITE_STEP_IDS_FIELD_NUMBER = 2; @SuppressWarnings("serial") private com.google.protobuf.LazyStringArrayList prerequisiteStepIds_ = com.google.protobuf.LazyStringArrayList.emptyList(); /** * * *
   * Output only. Node's prerequisite nodes.
   * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return A list containing the prerequisiteStepIds. */ public com.google.protobuf.ProtocolStringList getPrerequisiteStepIdsList() { return prerequisiteStepIds_; } /** * * *
   * Output only. Node's prerequisite nodes.
   * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return The count of prerequisiteStepIds. */ public int getPrerequisiteStepIdsCount() { return prerequisiteStepIds_.size(); } /** * * *
   * Output only. Node's prerequisite nodes.
   * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param index The index of the element to return. * @return The prerequisiteStepIds at the given index. */ public java.lang.String getPrerequisiteStepIds(int index) { return prerequisiteStepIds_.get(index); } /** * * *
   * Output only. Node's prerequisite nodes.
   * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param index The index of the value to return. * @return The bytes of the prerequisiteStepIds at the given index. */ public com.google.protobuf.ByteString getPrerequisiteStepIdsBytes(int index) { return prerequisiteStepIds_.getByteString(index); } public static final int JOB_ID_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object jobId_ = ""; /** * * *
   * Output only. The job id; populated after the node enters RUNNING state.
   * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The jobId. */ @java.lang.Override public java.lang.String getJobId() { java.lang.Object ref = jobId_; 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(); jobId_ = s; return s; } } /** * * *
   * Output only. The job id; populated after the node enters RUNNING state.
   * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for jobId. */ @java.lang.Override public com.google.protobuf.ByteString getJobIdBytes() { java.lang.Object ref = jobId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); jobId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int STATE_FIELD_NUMBER = 5; private int state_ = 0; /** * * *
   * Output only. The node state.
   * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return The enum numeric value on the wire for state. */ @java.lang.Override public int getStateValue() { return state_; } /** * * *
   * Output only. The node state.
   * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return The state. */ @java.lang.Override public com.google.cloud.dataproc.v1.WorkflowNode.NodeState getState() { com.google.cloud.dataproc.v1.WorkflowNode.NodeState result = com.google.cloud.dataproc.v1.WorkflowNode.NodeState.forNumber(state_); return result == null ? com.google.cloud.dataproc.v1.WorkflowNode.NodeState.UNRECOGNIZED : result; } public static final int ERROR_FIELD_NUMBER = 6; @SuppressWarnings("serial") private volatile java.lang.Object error_ = ""; /** * * *
   * Output only. The error detail.
   * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The error. */ @java.lang.Override public java.lang.String getError() { java.lang.Object ref = error_; 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(); error_ = s; return s; } } /** * * *
   * Output only. The error detail.
   * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for error. */ @java.lang.Override public com.google.protobuf.ByteString getErrorBytes() { java.lang.Object ref = error_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); error_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } 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(stepId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, stepId_); } for (int i = 0; i < prerequisiteStepIds_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, prerequisiteStepIds_.getRaw(i)); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(jobId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, jobId_); } if (state_ != com.google.cloud.dataproc.v1.WorkflowNode.NodeState.NODE_STATE_UNSPECIFIED.getNumber()) { output.writeEnum(5, state_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(error_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, error_); } 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(stepId_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, stepId_); } { int dataSize = 0; for (int i = 0; i < prerequisiteStepIds_.size(); i++) { dataSize += computeStringSizeNoTag(prerequisiteStepIds_.getRaw(i)); } size += dataSize; size += 1 * getPrerequisiteStepIdsList().size(); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(jobId_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, jobId_); } if (state_ != com.google.cloud.dataproc.v1.WorkflowNode.NodeState.NODE_STATE_UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream.computeEnumSize(5, state_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(error_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, error_); } 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.WorkflowNode)) { return super.equals(obj); } com.google.cloud.dataproc.v1.WorkflowNode other = (com.google.cloud.dataproc.v1.WorkflowNode) obj; if (!getStepId().equals(other.getStepId())) return false; if (!getPrerequisiteStepIdsList().equals(other.getPrerequisiteStepIdsList())) return false; if (!getJobId().equals(other.getJobId())) return false; if (state_ != other.state_) return false; if (!getError().equals(other.getError())) 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) + STEP_ID_FIELD_NUMBER; hash = (53 * hash) + getStepId().hashCode(); if (getPrerequisiteStepIdsCount() > 0) { hash = (37 * hash) + PREREQUISITE_STEP_IDS_FIELD_NUMBER; hash = (53 * hash) + getPrerequisiteStepIdsList().hashCode(); } hash = (37 * hash) + JOB_ID_FIELD_NUMBER; hash = (53 * hash) + getJobId().hashCode(); hash = (37 * hash) + STATE_FIELD_NUMBER; hash = (53 * hash) + state_; hash = (37 * hash) + ERROR_FIELD_NUMBER; hash = (53 * hash) + getError().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dataproc.v1.WorkflowNode parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dataproc.v1.WorkflowNode 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.WorkflowNode parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dataproc.v1.WorkflowNode 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.WorkflowNode parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dataproc.v1.WorkflowNode 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.WorkflowNode parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.dataproc.v1.WorkflowNode 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.WorkflowNode parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.dataproc.v1.WorkflowNode 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.WorkflowNode 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.WorkflowNode 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.WorkflowNode prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * * *
   * The workflow node.
   * 
* * Protobuf type {@code google.cloud.dataproc.v1.WorkflowNode} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dataproc.v1.WorkflowNode) com.google.cloud.dataproc.v1.WorkflowNodeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dataproc.v1.WorkflowTemplatesProto .internal_static_google_cloud_dataproc_v1_WorkflowNode_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dataproc.v1.WorkflowTemplatesProto .internal_static_google_cloud_dataproc_v1_WorkflowNode_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dataproc.v1.WorkflowNode.class, com.google.cloud.dataproc.v1.WorkflowNode.Builder.class); } // Construct using com.google.cloud.dataproc.v1.WorkflowNode.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; stepId_ = ""; prerequisiteStepIds_ = com.google.protobuf.LazyStringArrayList.emptyList(); jobId_ = ""; state_ = 0; error_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dataproc.v1.WorkflowTemplatesProto .internal_static_google_cloud_dataproc_v1_WorkflowNode_descriptor; } @java.lang.Override public com.google.cloud.dataproc.v1.WorkflowNode getDefaultInstanceForType() { return com.google.cloud.dataproc.v1.WorkflowNode.getDefaultInstance(); } @java.lang.Override public com.google.cloud.dataproc.v1.WorkflowNode build() { com.google.cloud.dataproc.v1.WorkflowNode result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.dataproc.v1.WorkflowNode buildPartial() { com.google.cloud.dataproc.v1.WorkflowNode result = new com.google.cloud.dataproc.v1.WorkflowNode(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.dataproc.v1.WorkflowNode result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.stepId_ = stepId_; } if (((from_bitField0_ & 0x00000002) != 0)) { prerequisiteStepIds_.makeImmutable(); result.prerequisiteStepIds_ = prerequisiteStepIds_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.jobId_ = jobId_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.state_ = state_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.error_ = error_; } } @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.WorkflowNode) { return mergeFrom((com.google.cloud.dataproc.v1.WorkflowNode) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dataproc.v1.WorkflowNode other) { if (other == com.google.cloud.dataproc.v1.WorkflowNode.getDefaultInstance()) return this; if (!other.getStepId().isEmpty()) { stepId_ = other.stepId_; bitField0_ |= 0x00000001; onChanged(); } if (!other.prerequisiteStepIds_.isEmpty()) { if (prerequisiteStepIds_.isEmpty()) { prerequisiteStepIds_ = other.prerequisiteStepIds_; bitField0_ |= 0x00000002; } else { ensurePrerequisiteStepIdsIsMutable(); prerequisiteStepIds_.addAll(other.prerequisiteStepIds_); } onChanged(); } if (!other.getJobId().isEmpty()) { jobId_ = other.jobId_; bitField0_ |= 0x00000004; onChanged(); } if (other.state_ != 0) { setStateValue(other.getStateValue()); } if (!other.getError().isEmpty()) { error_ = other.error_; bitField0_ |= 0x00000010; onChanged(); } 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: { stepId_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { java.lang.String s = input.readStringRequireUtf8(); ensurePrerequisiteStepIdsIsMutable(); prerequisiteStepIds_.add(s); break; } // case 18 case 26: { jobId_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 40: { state_ = input.readEnum(); bitField0_ |= 0x00000008; break; } // case 40 case 50: { error_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000010; break; } // case 50 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 stepId_ = ""; /** * * *
     * Output only. The name of the node.
     * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The stepId. */ public java.lang.String getStepId() { java.lang.Object ref = stepId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); stepId_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Output only. The name of the node.
     * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for stepId. */ public com.google.protobuf.ByteString getStepIdBytes() { java.lang.Object ref = stepId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); stepId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Output only. The name of the node.
     * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The stepId to set. * @return This builder for chaining. */ public Builder setStepId(java.lang.String value) { if (value == null) { throw new NullPointerException(); } stepId_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Output only. The name of the node.
     * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ public Builder clearStepId() { stepId_ = getDefaultInstance().getStepId(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Output only. The name of the node.
     * 
* * string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for stepId to set. * @return This builder for chaining. */ public Builder setStepIdBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); stepId_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private com.google.protobuf.LazyStringArrayList prerequisiteStepIds_ = com.google.protobuf.LazyStringArrayList.emptyList(); private void ensurePrerequisiteStepIdsIsMutable() { if (!prerequisiteStepIds_.isModifiable()) { prerequisiteStepIds_ = new com.google.protobuf.LazyStringArrayList(prerequisiteStepIds_); } bitField0_ |= 0x00000002; } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return A list containing the prerequisiteStepIds. */ public com.google.protobuf.ProtocolStringList getPrerequisiteStepIdsList() { prerequisiteStepIds_.makeImmutable(); return prerequisiteStepIds_; } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return The count of prerequisiteStepIds. */ public int getPrerequisiteStepIdsCount() { return prerequisiteStepIds_.size(); } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param index The index of the element to return. * @return The prerequisiteStepIds at the given index. */ public java.lang.String getPrerequisiteStepIds(int index) { return prerequisiteStepIds_.get(index); } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param index The index of the value to return. * @return The bytes of the prerequisiteStepIds at the given index. */ public com.google.protobuf.ByteString getPrerequisiteStepIdsBytes(int index) { return prerequisiteStepIds_.getByteString(index); } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param index The index to set the value at. * @param value The prerequisiteStepIds to set. * @return This builder for chaining. */ public Builder setPrerequisiteStepIds(int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensurePrerequisiteStepIdsIsMutable(); prerequisiteStepIds_.set(index, value); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param value The prerequisiteStepIds to add. * @return This builder for chaining. */ public Builder addPrerequisiteStepIds(java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensurePrerequisiteStepIdsIsMutable(); prerequisiteStepIds_.add(value); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param values The prerequisiteStepIds to add. * @return This builder for chaining. */ public Builder addAllPrerequisiteStepIds(java.lang.Iterable values) { ensurePrerequisiteStepIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, prerequisiteStepIds_); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return This builder for chaining. */ public Builder clearPrerequisiteStepIds() { prerequisiteStepIds_ = com.google.protobuf.LazyStringArrayList.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); ; onChanged(); return this; } /** * * *
     * Output only. Node's prerequisite nodes.
     * 
* * repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param value The bytes of the prerequisiteStepIds to add. * @return This builder for chaining. */ public Builder addPrerequisiteStepIdsBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensurePrerequisiteStepIdsIsMutable(); prerequisiteStepIds_.add(value); bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object jobId_ = ""; /** * * *
     * Output only. The job id; populated after the node enters RUNNING state.
     * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The jobId. */ public java.lang.String getJobId() { java.lang.Object ref = jobId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); jobId_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Output only. The job id; populated after the node enters RUNNING state.
     * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for jobId. */ public com.google.protobuf.ByteString getJobIdBytes() { java.lang.Object ref = jobId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); jobId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Output only. The job id; populated after the node enters RUNNING state.
     * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The jobId to set. * @return This builder for chaining. */ public Builder setJobId(java.lang.String value) { if (value == null) { throw new NullPointerException(); } jobId_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Output only. The job id; populated after the node enters RUNNING state.
     * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ public Builder clearJobId() { jobId_ = getDefaultInstance().getJobId(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Output only. The job id; populated after the node enters RUNNING state.
     * 
* * string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for jobId to set. * @return This builder for chaining. */ public Builder setJobIdBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); jobId_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private int state_ = 0; /** * * *
     * Output only. The node state.
     * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return The enum numeric value on the wire for state. */ @java.lang.Override public int getStateValue() { return state_; } /** * * *
     * Output only. The node state.
     * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @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_ |= 0x00000008; onChanged(); return this; } /** * * *
     * Output only. The node state.
     * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return The state. */ @java.lang.Override public com.google.cloud.dataproc.v1.WorkflowNode.NodeState getState() { com.google.cloud.dataproc.v1.WorkflowNode.NodeState result = com.google.cloud.dataproc.v1.WorkflowNode.NodeState.forNumber(state_); return result == null ? com.google.cloud.dataproc.v1.WorkflowNode.NodeState.UNRECOGNIZED : result; } /** * * *
     * Output only. The node state.
     * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @param value The state to set. * @return This builder for chaining. */ public Builder setState(com.google.cloud.dataproc.v1.WorkflowNode.NodeState value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000008; state_ = value.getNumber(); onChanged(); return this; } /** * * *
     * Output only. The node state.
     * 
* * * .google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * * @return This builder for chaining. */ public Builder clearState() { bitField0_ = (bitField0_ & ~0x00000008); state_ = 0; onChanged(); return this; } private java.lang.Object error_ = ""; /** * * *
     * Output only. The error detail.
     * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The error. */ public java.lang.String getError() { java.lang.Object ref = error_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); error_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Output only. The error detail.
     * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for error. */ public com.google.protobuf.ByteString getErrorBytes() { java.lang.Object ref = error_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); error_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Output only. The error detail.
     * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The error to set. * @return This builder for chaining. */ public Builder setError(java.lang.String value) { if (value == null) { throw new NullPointerException(); } error_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * Output only. The error detail.
     * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return This builder for chaining. */ public Builder clearError() { error_ = getDefaultInstance().getError(); bitField0_ = (bitField0_ & ~0x00000010); onChanged(); return this; } /** * * *
     * Output only. The error detail.
     * 
* * string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @param value The bytes for error to set. * @return This builder for chaining. */ public Builder setErrorBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); error_ = value; bitField0_ |= 0x00000010; 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.WorkflowNode) } // @@protoc_insertion_point(class_scope:google.cloud.dataproc.v1.WorkflowNode) private static final com.google.cloud.dataproc.v1.WorkflowNode DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dataproc.v1.WorkflowNode(); } public static com.google.cloud.dataproc.v1.WorkflowNode getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public WorkflowNode parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.google.cloud.dataproc.v1.WorkflowNode getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy