枚举类型转换为int

时间:2012-02-03 05:35:30

标签: java android eclipse

我正在尝试使用以下代码... 我正在使用的Enum类是

public enum AccountType {
        kAccountTypeAsset(0x1000),
        kAccountTypeAssetFixed(0x1010),

        private int value;
        private AccountType(int value)
        {
         this.value = value;    
        }
        public int getValue()
        {
            return value;
        }
    }

    public AccountType accountType = kAccountTypeAsset;
        integerToDB(accountType);
...

/*************************/

public Object integerToDB (Integer i ) 
    {
    if(i == -1)
    {
        return null;
    }
     return i;
    }

我如何使用

  

ACCOUNTTYPE

为整数。

2 个答案:

答案 0 :(得分:2)

integerToDB(accountType.getValue());

答案 1 :(得分:1)

由于您的枚举已实施getValue方法,因此您可以使用accountType.getValue()获取存储在accountType中的整数值。