static A shallowCloneToClassWithFields(Class c, O o, S... fields) { if (o == null) null; A a = nuInstance(c); copyFields(o, a, fields); ret a; }