static S structureOrText_crud(O o) { if (o == null) ret ""; if (o instanceof Long) ret str(o); // avoid the "L" if (o instanceof File) ret ((File) o).getAbsolutePath(); ret str(o); }