static L linkedObjectsToList(A a, S nextField) { new L l; while (a != null) { l.add(a); a = castGet(a, nextField); } ret l; }