Enumset reflection problem
Hi All,
I faced with a problem over a week and I hope somone has a solution for that.
I have enum like this:
package com.lo.enums;
public enum Tag{
Tag1,
Tag2,
Tag3
}
I have tried to create dynamically using reflection EnumSet of that enum but getting always java.lang.ClassNotFoundException exception.
I have tried to do like this:
String type = "java.util.EnumSet<com.lo.enums.Tag>";
Class clazz = Class.forName(type);
Thanks for the help.

