001    package org.bukkit.scoreboard;
002    
003    /**
004     * Criteria names which trigger an objective to be modified by actions in-game
005     */
006    public class Criterias {
007        public static final String HEALTH;
008        public static final String PLAYER_KILLS;
009        public static final String TOTAL_KILLS;
010        public static final String DEATHS;
011    
012        static {
013            HEALTH="health";
014            PLAYER_KILLS="playerKillCount";
015            TOTAL_KILLS="totalKillCount";
016            DEATHS="deathCount";
017        }
018    
019        private Criterias() {}
020    }