com.databricks.jdbc.client.impl.thrift.generated.TCloudFetchDisabledReason Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.19.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*
* @generated
*/
package com.databricks.jdbc.client.impl.thrift.generated;
@javax.annotation.Generated(
value = "Autogenerated by Thrift Compiler (0.19.0)",
date = "2024-05-06")
public enum TCloudFetchDisabledReason implements org.apache.thrift.TEnum {
ARROW_SUPPORT(0),
CLOUD_FETCH_SUPPORT(1),
PROTOCOL_VERSION(2),
REGION_SUPPORT(3),
BLOCKLISTED_OPERATION(4),
SMALL_RESULT_SIZE(5),
CUSTOMER_STORAGE_SUPPORT(6),
UNKNOWN(7),
METADATA_OPERATION(8);
private final int value;
private TCloudFetchDisabledReason(int value) {
this.value = value;
}
/** Get the integer value of this enum value, as defined in the Thrift IDL. */
@Override
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.
*/
@org.apache.thrift.annotation.Nullable
public static TCloudFetchDisabledReason findByValue(int value) {
switch (value) {
case 0:
return ARROW_SUPPORT;
case 1:
return CLOUD_FETCH_SUPPORT;
case 2:
return PROTOCOL_VERSION;
case 3:
return REGION_SUPPORT;
case 4:
return BLOCKLISTED_OPERATION;
case 5:
return SMALL_RESULT_SIZE;
case 6:
return CUSTOMER_STORAGE_SUPPORT;
case 7:
return UNKNOWN;
case 8:
return METADATA_OPERATION;
default:
return null;
}
}
}