/** * 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; }
/** @return */ public static int count() { return MainStat.values().length; }