/* * Conservation.java * * Created on: 17-Mar-2010 * */ package netukar.animalia; /** * Enumeration of animal conservation states according to * http://en.wikipedia.org/wiki/Conservation_status * * @author Radovan Netuka */ public enum Conservation { LC, // Least Concern NT, // Near Threatened VU, // Vulnerable EN, // Endangered CR, // Critically Endangered EW, // Extinct in the Wild EX, // Extinct }