示例#1
0
 /**
  * List of the Names for all stats.
  *
  * @return
  */
 public static List<String> getNames() {
   ArrayList<String> ret = new ArrayList<String>(MainStat.values().length);
   for (MainStat stat : MainStat.values()) {
     ret.add(stat.getName());
   }
   return ret;
 }