DataOutputStream dout = new DataOutputStream(bout);
dout.writeUTF(cfm.tableName);
dout.writeUTF(cfm.cfName);
dout.writeUTF(cfm.columnType);
dout.writeUTF(cfm.comparator.getClass().getName());
dout.writeBoolean(cfm.subcolumnComparator != null);
if (cfm.subcolumnComparator != null)
dout.writeUTF(cfm.subcolumnComparator.getClass().getName());
dout.writeBoolean(cfm.comment != null);
if (cfm.comment != null)
dout.writeUTF(cfm.comment);