Hi friends,
I am new to Java, but at advance states in c#. Is it possible anyone of you to help me? I tried to search a lot of places but not able to find exact implementation or may be I am not able to understand.
I have this enum in c#
public enum Channel : byte
{
X = 0x00,
Y = 0x01,
Z = 0x0E,
}
I wish to convert it to Java enum.
so that I can access it like Channel.Z
Thanks in advance.
