/** Performs a deep copy on <i>other</i>. */
 public batch_mutation_super_t(batch_mutation_super_t other) {
   __isset.table = other.__isset.table;
   if (other.table != null) {
     this.table = other.table;
   }
   __isset.key = other.__isset.key;
   if (other.key != null) {
     this.key = other.key;
   }
   __isset.cfmap = other.__isset.cfmap;
   if (other.cfmap != null) {
     this.cfmap = other.cfmap;
   }
   __isset.cfmapdel = other.__isset.cfmapdel;
   if (other.cfmapdel != null) {
     this.cfmapdel = other.cfmapdel;
   }
 }
 /** Performs a deep copy on <i>other</i>. */
 public HiveClusterStatus(HiveClusterStatus other) {
   __isset.taskTrackers = other.__isset.taskTrackers;
   this.taskTrackers = other.taskTrackers;
   __isset.mapTasks = other.__isset.mapTasks;
   this.mapTasks = other.mapTasks;
   __isset.reduceTasks = other.__isset.reduceTasks;
   this.reduceTasks = other.reduceTasks;
   __isset.maxMapTasks = other.__isset.maxMapTasks;
   this.maxMapTasks = other.maxMapTasks;
   __isset.maxReduceTasks = other.__isset.maxReduceTasks;
   this.maxReduceTasks = other.maxReduceTasks;
   __isset.state = other.__isset.state;
   this.state = other.state;
 }