@Override
 public int getMemory(Object obj) {
   DataType t = getType(obj);
   if (t == this) {
     return 1000;
   }
   return t.getMemory(obj);
 }