Exemple #1
0
 public static boolean isKSort(String sort) {
   try {
     KSort.valueOf(sort);
   } catch (IllegalArgumentException e) {
     return sort.equals(KSorts.KLIST);
   }
   return true;
 }