org.apache.hadoop.hive.metastore.api.SchemaCompatibility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache Show documentation
Show all versions of hive-apache Show documentation
Shaded version of Apache Hive for Presto
The newest version!
/**
* Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hive.metastore.api;
import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
public enum SchemaCompatibility implements org.apache.thrift.TEnum {
NONE(1),
BACKWARD(2),
FORWARD(3),
BOTH(4);
private final int value;
private SchemaCompatibility(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 SchemaCompatibility findByValue(int value) {
switch (value) {
case 1:
return NONE;
case 2:
return BACKWARD;
case 3:
return FORWARD;
case 4:
return BOTH;
default:
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy