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