/** * Autogenerated by Thrift Compiler (0.9.2) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package com.xiaomi.infra.galaxy.sds.thrift; import java.util.Map; import java.util.HashMap; import libthrift091.TEnum; public enum ScanOp implements libthrift091.TEnum { /** * 统计满足查询条件的记录数 */ COUNT(0), /** * 删除满足查询条件的记录 */ DELETE(1), /** * 更新满足条件的记录 */ UPDATE(2); private final int value; private ScanOp(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 ScanOp findByValue(int value) { switch (value) { case 0: return COUNT; case 1: return DELETE; case 2: return UPDATE; default: return null; } } }