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

alluxio.grpc.JobType Maven / Gradle / Ivy

// Generated by the protocol buffer alluxio.shaded.client.com.iler.  DO NOT EDIT!
// source: grpc/job_master.proto

package alluxio.grpc;

/**
 * Protobuf enum {@code alluxio.grpc.job.JobType}
 */
public enum JobType
    implements alluxio.shaded.client.com.google.protobuf.ProtocolMessageEnum {
  /**
   * PLAN = 1;
   */
  PLAN(1),
  /**
   * TASK = 2;
   */
  TASK(2),
  /**
   * WORKFLOW = 3;
   */
  WORKFLOW(3),
  ;

  /**
   * PLAN = 1;
   */
  public static final int PLAN_VALUE = 1;
  /**
   * TASK = 2;
   */
  public static final int TASK_VALUE = 2;
  /**
   * WORKFLOW = 3;
   */
  public static final int WORKFLOW_VALUE = 3;


  public final int getNumber() {
    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 JobType 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 JobType forNumber(int value) {
    switch (value) {
      case 1: return PLAN;
      case 2: return TASK;
      case 3: return WORKFLOW;
      default: return null;
    }
  }

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

  public final alluxio.shaded.client.com.google.protobuf.Descriptors.EnumValueDescriptor
      getValueDescriptor() {
    return getDescriptor().getValues().get(ordinal());
  }
  public final alluxio.shaded.client.com.google.protobuf.Descriptors.EnumDescriptor
      getDescriptorForType() {
    return getDescriptor();
  }
  public static final alluxio.shaded.client.com.google.protobuf.Descriptors.EnumDescriptor
      getDescriptor() {
    return alluxio.grpc.JobMasterProto.getDescriptor().getEnumTypes().get(1);
  }

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

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

  private final int value;

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

  // @@protoc_insertion_point(enum_scope:alluxio.grpc.job.JobType)
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy