public int compare(Object obj1, Object obj2) {
   OrderInvestigationDFTForCumulateResultsVo voObj1 =
       (OrderInvestigationDFTForCumulateResultsVo) obj1;
   OrderInvestigationDFTForCumulateResultsVo voObj2 =
       (OrderInvestigationDFTForCumulateResultsVo) obj2;
   return direction * (voObj1.compareTo(voObj2, this.caseInsensitive));
 }
 public ims.ocrr.vo.beans.OrderInvestigationDFTForCumulateResultsVoBean[]
     getBeanCollectionArray() {
   ims.ocrr.vo.beans.OrderInvestigationDFTForCumulateResultsVoBean[] result =
       new ims.ocrr.vo.beans.OrderInvestigationDFTForCumulateResultsVoBean[col.size()];
   for (int i = 0; i < col.size(); i++) {
     OrderInvestigationDFTForCumulateResultsVo vo =
         ((OrderInvestigationDFTForCumulateResultsVo) col.get(i));
     result[i] = (ims.ocrr.vo.beans.OrderInvestigationDFTForCumulateResultsVoBean) vo.getBean();
   }
   return result;
 }