public int compare(Object obj1, Object obj2) {
   ProblemConfigVo voObj1 = (ProblemConfigVo) obj1;
   ProblemConfigVo voObj2 = (ProblemConfigVo) obj2;
   return direction * (voObj1.compareTo(voObj2, this.caseInsensitive));
 }