*/
private Object instancePara(Parse cells) throws Exception {
if (this.parsePropertyMethodName != null) {
String text = cells.text();
try {
MethodAccessor methodAccessor = new MethodAccessor<Object>(this, parsePropertyMethodName, String.class);
return methodAccessor.invoke(this, new Object[] { text });
} catch (NoSuchMethodRuntimeException e) {
TypeAdapter typeAdapter = TypeAdapter.on(this, dtoClazz);
return typeAdapter.parse(text);
}
}