SyntaxFix
Write A Post
Hire A Developer
Questions
I use the blow function in my GeneralUtils class, check it may be useful
public String getFieldType(Object o) { if (o == null) { return "Unable to identify the class name"; } return o.getClass().getName(); }