public String getTypeSimpleClassName(String type) { if (TypeUtil.isPrimitiveType(type)) { return type; } else { try { return Class.forName(type).getSimpleName(); } catch (ClassNotFoundException e) { } } return StringPool.BLANK; }
public String getRawOutputType() { return TypeUtil.getOutputJavaType(_outputType, false); }
public String getOutputType() { return TypeUtil.getOutputJavaType(_outputType, true); }
public String getRawInputType() { return TypeUtil.getInputJavaType(_inputType, false); }
public String getInputType() { return TypeUtil.getInputJavaType(_inputType, true); }