您需要以
value某种方式使枚举公开,例如
public enum Tax { NONE(0), SALES(10), import(5); private final int value; private Tax(int value) { this.value = value; } public int getValue() { return value; }}...public int getTaxValue() { Tax tax = Tax.NONE; // Or whatever return tax.getValue();}(顺便说一句,我将名称更改为更常规和易读。)
这是 假设 您要在构造函数中分配值。如果这不是您想要的,则需要向我们提供更多信息。



