@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
{
ObjectInputStream.GetField getField = in.readFields();
HashMap<List<MetaValue>, CompositeValue> dataMap = (HashMap<List<MetaValue>, CompositeValue>) getField.get("dataMap", null);
TableMetaType tableType = (TableMetaType) getField.get("tableType", null);
try
{
init(dataMap, tableType);
}
catch (Exception e)