static S getClassName(O o) { ret o == null ? "null" : o instanceof Class ? ((Class) o).getName() : o.getClass().getName(); }