blob: 82e7640e065fd11339288b4b58416044b8d052bd [file] [log] [blame]
/**
* 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.sentry.provider.db.generic.service.thrift;
import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
public enum TSentryGrantOption implements org.apache.thrift.TEnum {
TRUE(1),
FALSE(0),
UNSET(-1);
private final int value;
private TSentryGrantOption(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 TSentryGrantOption findByValue(int value) {
switch (value) {
case 1:
return TRUE;
case 0:
return FALSE;
case -1:
return UNSET;
default:
return null;
}
}
}