How can i pre-define any types of values in the Enum?
public enum Hardware
{
USB2(0) = "external low speed",
PCI(1) = "embedded",
USB3(2) = "external high speed
}
System.out.println( Hardware.USB2 ) // show me external low speed
|
|
|
|||
|
|
|
You can define You can define a
Just note that is solution is available starting at |
|||||||
|
|
|||
|
|