protected int putDate(String name, Date d) { int start = _buf.position(); _put(DATE, name); _buf.putLong(d.getTime()); return _buf.position() - start; }
protected void putDate(String name, Date d) { _put(DATE, name); _buf.writeLong(d.getTime()); }