如何将枚举值转换为整数?
我有一个函数,它返回一个类型int。但是,我只有 TAX 枚举的值。
如何将 TAX 枚举值转换为 int?
public enum TAX {
NOTAX(0),SALESTAX(10),IMPORTEDTAX(5);
private int value;
private TAX(int value){
this.value = value;
}
}
TAX var = TAX.NOTAX; // This value will differ
public int getTaxValue()
{
// what do do here?
// return (int)var;
}