com.lingyi365.bms.thrift.pay.GetReceiveStatus Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.10.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package com.lingyi365.bms.thrift.pay;
import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
public enum GetReceiveStatus implements org.apache.thrift.TEnum {
Success(0),
NoParam(1),
InvalidReceiveId(2),
InvalidBusinessTypeCode(3),
InvalidTitle(4),
InvalidOrderId(5),
InvalidTradeMoney(6),
InitAccountFail(7),
HadRequest(8),
Error(9);
private final int value;
private GetReceiveStatus(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 GetReceiveStatus findByValue(int value) {
switch (value) {
case 0:
return Success;
case 1:
return NoParam;
case 2:
return InvalidReceiveId;
case 3:
return InvalidBusinessTypeCode;
case 4:
return InvalidTitle;
case 5:
return InvalidOrderId;
case 6:
return InvalidTradeMoney;
case 7:
return InitAccountFail;
case 8:
return HadRequest;
case 9:
return Error;
default:
return null;
}
}
}