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

java.org.apache.hive.service.cli.thrift.TProtocolVersion Maven / Gradle / Ivy

/**
 * Autogenerated by Thrift Compiler (0.9.0)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package org.apache.hive.service.cli.thrift;


import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;

public enum TProtocolVersion implements org.apache.thrift.TEnum {
  HIVE_CLI_SERVICE_PROTOCOL_V1(0),
  HIVE_CLI_SERVICE_PROTOCOL_V2(1),
  HIVE_CLI_SERVICE_PROTOCOL_V3(2),
  HIVE_CLI_SERVICE_PROTOCOL_V4(3),
  HIVE_CLI_SERVICE_PROTOCOL_V5(4),
  HIVE_CLI_SERVICE_PROTOCOL_V6(5),
  HIVE_CLI_SERVICE_PROTOCOL_V7(6),
  HIVE_CLI_SERVICE_PROTOCOL_V8(7);

  private final int value;

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

  /**
   * Get the integer value of this enum value, as defined in the Thrift IDL.
   */
  public int getValue() {
    return value;
  }

  /**
   * Find a the enum type by its integer value, as defined in the Thrift IDL.
   * @return null if the value is not found.
   */
  public static TProtocolVersion findByValue(int value) { 
    switch (value) {
      case 0:
        return HIVE_CLI_SERVICE_PROTOCOL_V1;
      case 1:
        return HIVE_CLI_SERVICE_PROTOCOL_V2;
      case 2:
        return HIVE_CLI_SERVICE_PROTOCOL_V3;
      case 3:
        return HIVE_CLI_SERVICE_PROTOCOL_V4;
      case 4:
        return HIVE_CLI_SERVICE_PROTOCOL_V5;
      case 5:
        return HIVE_CLI_SERVICE_PROTOCOL_V6;
      case 6:
        return HIVE_CLI_SERVICE_PROTOCOL_V7;
      case 7:
        return HIVE_CLI_SERVICE_PROTOCOL_V8;
      default:
        return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy