/** 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;
 }