Hi All
I came across thas problem that I without knowing the actual enum type i need to iterate its possible values.
if (value instanceOf Enum){
Enum enumValue = (Enum)value;
}
Any ideas how to extract from enumValue its possible values ?
Thanks