private static final String MODEL_PKG_TKN = "com.tll.model.test.";
@Override
public Class<?> resolveEntityClass(IEntityType entityType) throws IllegalArgumentException {
if(entityType instanceof TestEntityType == false) throw new IllegalArgumentException("Expeceted TestEntityType");
final TestEntityType set = (TestEntityType) entityType;
try {
return Class.forName(MODEL_PKG_TKN + StringUtil.enumStyleToCamelCase(set.name(), true));
}
catch(final ClassNotFoundException e) {
throw new IllegalArgumentException(e);
}
}