org.apache.hive.service.cli.thrift.TProtocolVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache-jdbc Show documentation
Show all versions of hive-apache-jdbc Show documentation
Shaded version of Apache Hive JDBC driver for Presto
/**
* 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 com.facebook.presto.hive.$internal.org.apache.thrift.TEnum;
public enum TProtocolVersion implements com.facebook.presto.hive.$internal.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);
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;
default:
return null;
}
}
}