示例#1
0
 /**
  * Get the statkey for a given index.
  *
  * @param idx
  * @return
  */
 public static MainStat getForIndex(int idx) {
   for (MainStat key : values()) {
     if (key.getIndex() == idx) {
       return key;
     }
   }
   return null;
 }