package serene.simple; public class Utils { public static Class getClassOf(Object target) { if (target instanceof Class) { return (Class) target; } return target.getClass(); } }