/* Creates a new Header identical to the current one */ public Object clone() { Header h = new Header(); h.id = id; h.flags = flags; System.arraycopy(counts, 0, h.counts, 0, counts.length); return h; }