I have an Enum in .Net. How can I rewrite this Enum in java?
Here is the Enum:
public enum AdCategoryType : short
{
ForSale = 1,
ForBuy = 2,
ForRent = 8,
WantingForRent = 16,
WorkIsWanted = 32,
WorkIsGiven = 64
}
|
feedback
|
|
This gets you the enum:
| ||||
|
feedback
|
|
This will work:
To get the value of | |||||
feedback
|
} | |||
|
feedback
|