Determine the class name for the given object. Returns "null" if obj is null . @param obj the object to introspect (may be null ) @return the corresponding class name
(Object obj)
| 657 | * @return the corresponding class name |
| 658 | */ |
| 659 | public static String nullSafeClassName(Object obj) { |
| 660 | return (obj != null ? obj.getClass().getName() : NULL_STRING); |
| 661 | } |
| 662 | |
| 663 | /** |
| 664 | * Return a String representation of the specified Object. |
no test coverage detected