Ho una funzione che restituisce un tipo int. Tuttavia, ho solo un valore dell'enumerazione TAX.
Come posso trasmettere il valore di enumerazione TAX a un 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;
}