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

com.dimajix.flowman.kernel.proto.JobContext Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: common.proto

package com.dimajix.flowman.kernel.proto;

/**
 * Protobuf type {@code com.dimajix.flowman.kernel.JobContext}
 */
public final class JobContext extends
    com.dimajix.shaded.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.JobContext)
    JobContextOrBuilder {
private static final long serialVersionUID = 0L;
  // Use JobContext.newBuilder() to construct.
  private JobContext(com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private JobContext() {
  }

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

  public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.dimajix.flowman.kernel.proto.CommonProto.internal_static_com_dimajix_flowman_kernel_JobContext_descriptor;
  }

  @SuppressWarnings({"rawtypes"})
  @java.lang.Override
  protected com.dimajix.shaded.protobuf.MapField internalGetMapField(
      int number) {
    switch (number) {
      case 2:
        return internalGetArguments();
      default:
        throw new RuntimeException(
            "Invalid map field number: " + number);
    }
  }
  @java.lang.Override
  protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.dimajix.flowman.kernel.proto.CommonProto.internal_static_com_dimajix_flowman_kernel_JobContext_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.dimajix.flowman.kernel.proto.JobContext.class, com.dimajix.flowman.kernel.proto.JobContext.Builder.class);
  }

  public static final int JOB_FIELD_NUMBER = 1;
  private com.dimajix.flowman.kernel.proto.JobIdentifier job_;
  /**
   * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
   * @return Whether the job field is set.
   */
  @java.lang.Override
  public boolean hasJob() {
    return job_ != null;
  }
  /**
   * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
   * @return The job.
   */
  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.JobIdentifier getJob() {
    return job_ == null ? com.dimajix.flowman.kernel.proto.JobIdentifier.getDefaultInstance() : job_;
  }
  /**
   * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
   */
  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.JobIdentifierOrBuilder getJobOrBuilder() {
    return job_ == null ? com.dimajix.flowman.kernel.proto.JobIdentifier.getDefaultInstance() : job_;
  }

  public static final int ARGUMENTS_FIELD_NUMBER = 2;
  private static final class ArgumentsDefaultEntryHolder {
    static final com.dimajix.shaded.protobuf.MapEntry<
        java.lang.String, java.lang.String> defaultEntry =
            com.dimajix.shaded.protobuf.MapEntry
            .newDefaultInstance(
                com.dimajix.flowman.kernel.proto.CommonProto.internal_static_com_dimajix_flowman_kernel_JobContext_ArgumentsEntry_descriptor, 
                com.dimajix.shaded.protobuf.WireFormat.FieldType.STRING,
                "",
                com.dimajix.shaded.protobuf.WireFormat.FieldType.STRING,
                "");
  }
  @SuppressWarnings("serial")
  private com.dimajix.shaded.protobuf.MapField<
      java.lang.String, java.lang.String> arguments_;
  private com.dimajix.shaded.protobuf.MapField
  internalGetArguments() {
    if (arguments_ == null) {
      return com.google.protobuf.MapField.emptyMapField(
          ArgumentsDefaultEntryHolder.defaultEntry);
    }
    return arguments_;
  }
  public int getArgumentsCount() {
    return internalGetArguments().getMap().size();
  }
  /**
   * map<string, string> arguments = 2;
   */
  @java.lang.Override
  public boolean containsArguments(
      java.lang.String key) {
    if (key == null) { throw new NullPointerException("map key"); }
    return internalGetArguments().getMap().containsKey(key);
  }
  /**
   * Use {@link #getArgumentsMap()} instead.
   */
  @java.lang.Override
  @java.lang.Deprecated
  public java.util.Map getArguments() {
    return getArgumentsMap();
  }
  /**
   * map<string, string> arguments = 2;
   */
  @java.lang.Override
  public java.util.Map getArgumentsMap() {
    return internalGetArguments().getMap();
  }
  /**
   * map<string, string> arguments = 2;
   */
  @java.lang.Override
  public /* nullable */
java.lang.String getArgumentsOrDefault(
      java.lang.String key,
      /* nullable */
java.lang.String defaultValue) {
    if (key == null) { throw new NullPointerException("map key"); }
    java.util.Map map =
        internalGetArguments().getMap();
    return map.containsKey(key) ? map.get(key) : defaultValue;
  }
  /**
   * map<string, string> arguments = 2;
   */
  @java.lang.Override
  public java.lang.String getArgumentsOrThrow(
      java.lang.String key) {
    if (key == null) { throw new NullPointerException("map key"); }
    java.util.Map map =
        internalGetArguments().getMap();
    if (!map.containsKey(key)) {
      throw new java.lang.IllegalArgumentException();
    }
    return map.get(key);
  }

  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.dimajix.shaded.protobuf.CodedOutputStream output)
                      throws java.io.IOException {
    if (job_ != null) {
      output.writeMessage(1, getJob());
    }
    com.dimajix.shaded.protobuf.GeneratedMessageV3
      .serializeStringMapTo(
        output,
        internalGetArguments(),
        ArgumentsDefaultEntryHolder.defaultEntry,
        2);
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (job_ != null) {
      size += com.dimajix.shaded.protobuf.CodedOutputStream
        .computeMessageSize(1, getJob());
    }
    for (java.util.Map.Entry entry
         : internalGetArguments().getMap().entrySet()) {
      com.dimajix.shaded.protobuf.MapEntry
      arguments__ = ArgumentsDefaultEntryHolder.defaultEntry.newBuilderForType()
          .setKey(entry.getKey())
          .setValue(entry.getValue())
          .build();
      size += com.dimajix.shaded.protobuf.CodedOutputStream
          .computeMessageSize(2, arguments__);
    }
    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.dimajix.flowman.kernel.proto.JobContext)) {
      return super.equals(obj);
    }
    com.dimajix.flowman.kernel.proto.JobContext other = (com.dimajix.flowman.kernel.proto.JobContext) obj;

    if (hasJob() != other.hasJob()) return false;
    if (hasJob()) {
      if (!getJob()
          .equals(other.getJob())) return false;
    }
    if (!internalGetArguments().equals(
        other.internalGetArguments())) 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();
    if (hasJob()) {
      hash = (37 * hash) + JOB_FIELD_NUMBER;
      hash = (53 * hash) + getJob().hashCode();
    }
    if (!internalGetArguments().getMap().isEmpty()) {
      hash = (37 * hash) + ARGUMENTS_FIELD_NUMBER;
      hash = (53 * hash) + internalGetArguments().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      java.nio.ByteBuffer data)
      throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      java.nio.ByteBuffer data,
      com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      com.dimajix.shaded.protobuf.ByteString data)
      throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      com.dimajix.shaded.protobuf.ByteString data,
      com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(byte[] data)
      throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      byte[] data,
      com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      java.io.InputStream input,
      com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseDelimitedFrom(
      java.io.InputStream input,
      com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      com.dimajix.shaded.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.dimajix.flowman.kernel.proto.JobContext parseFrom(
      com.dimajix.shaded.protobuf.CodedInputStream input,
      com.dimajix.shaded.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.dimajix.flowman.kernel.proto.JobContext 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.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
    Builder builder = new Builder(parent);
    return builder;
  }
  /**
   * Protobuf type {@code com.dimajix.flowman.kernel.JobContext}
   */
  public static final class Builder extends
      com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.JobContext)
      com.dimajix.flowman.kernel.proto.JobContextOrBuilder {
    public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.dimajix.flowman.kernel.proto.CommonProto.internal_static_com_dimajix_flowman_kernel_JobContext_descriptor;
    }

    @SuppressWarnings({"rawtypes"})
    protected com.dimajix.shaded.protobuf.MapField internalGetMapField(
        int number) {
      switch (number) {
        case 2:
          return internalGetArguments();
        default:
          throw new RuntimeException(
              "Invalid map field number: " + number);
      }
    }
    @SuppressWarnings({"rawtypes"})
    protected com.dimajix.shaded.protobuf.MapField internalGetMutableMapField(
        int number) {
      switch (number) {
        case 2:
          return internalGetMutableArguments();
        default:
          throw new RuntimeException(
              "Invalid map field number: " + number);
      }
    }
    @java.lang.Override
    protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.dimajix.flowman.kernel.proto.CommonProto.internal_static_com_dimajix_flowman_kernel_JobContext_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.dimajix.flowman.kernel.proto.JobContext.class, com.dimajix.flowman.kernel.proto.JobContext.Builder.class);
    }

    // Construct using com.dimajix.flowman.kernel.proto.JobContext.newBuilder()
    private Builder() {

    }

    private Builder(
        com.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      job_ = null;
      if (jobBuilder_ != null) {
        jobBuilder_.dispose();
        jobBuilder_ = null;
      }
      internalGetMutableArguments().clear();
      return this;
    }

    @java.lang.Override
    public com.dimajix.shaded.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return com.dimajix.flowman.kernel.proto.CommonProto.internal_static_com_dimajix_flowman_kernel_JobContext_descriptor;
    }

    @java.lang.Override
    public com.dimajix.flowman.kernel.proto.JobContext getDefaultInstanceForType() {
      return com.dimajix.flowman.kernel.proto.JobContext.getDefaultInstance();
    }

    @java.lang.Override
    public com.dimajix.flowman.kernel.proto.JobContext build() {
      com.dimajix.flowman.kernel.proto.JobContext result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.dimajix.flowman.kernel.proto.JobContext buildPartial() {
      com.dimajix.flowman.kernel.proto.JobContext result = new com.dimajix.flowman.kernel.proto.JobContext(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.dimajix.flowman.kernel.proto.JobContext result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.job_ = jobBuilder_ == null
            ? job_
            : jobBuilder_.build();
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.arguments_ = internalGetArguments();
        result.arguments_.makeImmutable();
      }
    }

    @java.lang.Override
    public Builder mergeFrom(com.dimajix.shaded.protobuf.Message other) {
      if (other instanceof com.dimajix.flowman.kernel.proto.JobContext) {
        return mergeFrom((com.dimajix.flowman.kernel.proto.JobContext)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.dimajix.flowman.kernel.proto.JobContext other) {
      if (other == com.dimajix.flowman.kernel.proto.JobContext.getDefaultInstance()) return this;
      if (other.hasJob()) {
        mergeJob(other.getJob());
      }
      internalGetMutableArguments().mergeFrom(
          other.internalGetArguments());
      bitField0_ |= 0x00000002;
      this.mergeUnknownFields(other.getUnknownFields());
      onChanged();
      return this;
    }

    @java.lang.Override
    public final boolean isInitialized() {
      return true;
    }

    @java.lang.Override
    public Builder mergeFrom(
        com.dimajix.shaded.protobuf.CodedInputStream input,
        com.dimajix.shaded.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: {
              input.readMessage(
                  getJobFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 18: {
              com.dimajix.shaded.protobuf.MapEntry
              arguments__ = input.readMessage(
                  ArgumentsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
              internalGetMutableArguments().getMutableMap().put(
                  arguments__.getKey(), arguments__.getValue());
              bitField0_ |= 0x00000002;
              break;
            } // case 18
            default: {
              if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                done = true; // was an endgroup tag
              }
              break;
            } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.dimajix.shaded.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }
    private int bitField0_;

    private com.dimajix.flowman.kernel.proto.JobIdentifier job_;
    private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
        com.dimajix.flowman.kernel.proto.JobIdentifier, com.dimajix.flowman.kernel.proto.JobIdentifier.Builder, com.dimajix.flowman.kernel.proto.JobIdentifierOrBuilder> jobBuilder_;
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     * @return Whether the job field is set.
     */
    public boolean hasJob() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     * @return The job.
     */
    public com.dimajix.flowman.kernel.proto.JobIdentifier getJob() {
      if (jobBuilder_ == null) {
        return job_ == null ? com.dimajix.flowman.kernel.proto.JobIdentifier.getDefaultInstance() : job_;
      } else {
        return jobBuilder_.getMessage();
      }
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    public Builder setJob(com.dimajix.flowman.kernel.proto.JobIdentifier value) {
      if (jobBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        job_ = value;
      } else {
        jobBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    public Builder setJob(
        com.dimajix.flowman.kernel.proto.JobIdentifier.Builder builderForValue) {
      if (jobBuilder_ == null) {
        job_ = builderForValue.build();
      } else {
        jobBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    public Builder mergeJob(com.dimajix.flowman.kernel.proto.JobIdentifier value) {
      if (jobBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0) &&
          job_ != null &&
          job_ != com.dimajix.flowman.kernel.proto.JobIdentifier.getDefaultInstance()) {
          getJobBuilder().mergeFrom(value);
        } else {
          job_ = value;
        }
      } else {
        jobBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    public Builder clearJob() {
      bitField0_ = (bitField0_ & ~0x00000001);
      job_ = null;
      if (jobBuilder_ != null) {
        jobBuilder_.dispose();
        jobBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    public com.dimajix.flowman.kernel.proto.JobIdentifier.Builder getJobBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getJobFieldBuilder().getBuilder();
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    public com.dimajix.flowman.kernel.proto.JobIdentifierOrBuilder getJobOrBuilder() {
      if (jobBuilder_ != null) {
        return jobBuilder_.getMessageOrBuilder();
      } else {
        return job_ == null ?
            com.dimajix.flowman.kernel.proto.JobIdentifier.getDefaultInstance() : job_;
      }
    }
    /**
     * .com.dimajix.flowman.kernel.JobIdentifier job = 1;
     */
    private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
        com.dimajix.flowman.kernel.proto.JobIdentifier, com.dimajix.flowman.kernel.proto.JobIdentifier.Builder, com.dimajix.flowman.kernel.proto.JobIdentifierOrBuilder> 
        getJobFieldBuilder() {
      if (jobBuilder_ == null) {
        jobBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            com.dimajix.flowman.kernel.proto.JobIdentifier, com.dimajix.flowman.kernel.proto.JobIdentifier.Builder, com.dimajix.flowman.kernel.proto.JobIdentifierOrBuilder>(
                getJob(),
                getParentForChildren(),
                isClean());
        job_ = null;
      }
      return jobBuilder_;
    }

    private com.dimajix.shaded.protobuf.MapField<
        java.lang.String, java.lang.String> arguments_;
    private com.dimajix.shaded.protobuf.MapField
        internalGetArguments() {
      if (arguments_ == null) {
        return com.google.protobuf.MapField.emptyMapField(
            ArgumentsDefaultEntryHolder.defaultEntry);
      }
      return arguments_;
    }
    private com.dimajix.shaded.protobuf.MapField
        internalGetMutableArguments() {
      if (arguments_ == null) {
        arguments_ = com.dimajix.shaded.protobuf.MapField.newMapField(
            ArgumentsDefaultEntryHolder.defaultEntry);
      }
      if (!arguments_.isMutable()) {
        arguments_ = arguments_.copy();
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return arguments_;
    }
    public int getArgumentsCount() {
      return internalGetArguments().getMap().size();
    }
    /**
     * map<string, string> arguments = 2;
     */
    @java.lang.Override
    public boolean containsArguments(
        java.lang.String key) {
      if (key == null) { throw new NullPointerException("map key"); }
      return internalGetArguments().getMap().containsKey(key);
    }
    /**
     * Use {@link #getArgumentsMap()} instead.
     */
    @java.lang.Override
    @java.lang.Deprecated
    public java.util.Map getArguments() {
      return getArgumentsMap();
    }
    /**
     * map<string, string> arguments = 2;
     */
    @java.lang.Override
    public java.util.Map getArgumentsMap() {
      return internalGetArguments().getMap();
    }
    /**
     * map<string, string> arguments = 2;
     */
    @java.lang.Override
    public /* nullable */
java.lang.String getArgumentsOrDefault(
        java.lang.String key,
        /* nullable */
java.lang.String defaultValue) {
      if (key == null) { throw new NullPointerException("map key"); }
      java.util.Map map =
          internalGetArguments().getMap();
      return map.containsKey(key) ? map.get(key) : defaultValue;
    }
    /**
     * map<string, string> arguments = 2;
     */
    @java.lang.Override
    public java.lang.String getArgumentsOrThrow(
        java.lang.String key) {
      if (key == null) { throw new NullPointerException("map key"); }
      java.util.Map map =
          internalGetArguments().getMap();
      if (!map.containsKey(key)) {
        throw new java.lang.IllegalArgumentException();
      }
      return map.get(key);
    }
    public Builder clearArguments() {
      bitField0_ = (bitField0_ & ~0x00000002);
      internalGetMutableArguments().getMutableMap()
          .clear();
      return this;
    }
    /**
     * map<string, string> arguments = 2;
     */
    public Builder removeArguments(
        java.lang.String key) {
      if (key == null) { throw new NullPointerException("map key"); }
      internalGetMutableArguments().getMutableMap()
          .remove(key);
      return this;
    }
    /**
     * Use alternate mutation accessors instead.
     */
    @java.lang.Deprecated
    public java.util.Map
        getMutableArguments() {
      bitField0_ |= 0x00000002;
      return internalGetMutableArguments().getMutableMap();
    }
    /**
     * map<string, string> arguments = 2;
     */
    public Builder putArguments(
        java.lang.String key,
        java.lang.String value) {
      if (key == null) { throw new NullPointerException("map key"); }
      if (value == null) { throw new NullPointerException("map value"); }
      internalGetMutableArguments().getMutableMap()
          .put(key, value);
      bitField0_ |= 0x00000002;
      return this;
    }
    /**
     * map<string, string> arguments = 2;
     */
    public Builder putAllArguments(
        java.util.Map values) {
      internalGetMutableArguments().getMutableMap()
          .putAll(values);
      bitField0_ |= 0x00000002;
      return this;
    }
    @java.lang.Override
    public final Builder setUnknownFields(
        final com.dimajix.shaded.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

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


    // @@protoc_insertion_point(builder_scope:com.dimajix.flowman.kernel.JobContext)
  }

  // @@protoc_insertion_point(class_scope:com.dimajix.flowman.kernel.JobContext)
  private static final com.dimajix.flowman.kernel.proto.JobContext DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new com.dimajix.flowman.kernel.proto.JobContext();
  }

  public static com.dimajix.flowman.kernel.proto.JobContext getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.dimajix.shaded.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public JobContext parsePartialFrom(
        com.dimajix.shaded.protobuf.CodedInputStream input,
        com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
      Builder builder = newBuilder();
      try {
        builder.mergeFrom(input, extensionRegistry);
      } catch (com.dimajix.shaded.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(builder.buildPartial());
      } catch (com.dimajix.shaded.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.dimajix.shaded.protobuf.Parser parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.dimajix.shaded.protobuf.Parser getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.JobContext getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy