Exemplo n.º 1
0
 public static Color byId(int identifier) throws Exception {
   for (Color color : values()) {
     if (color.getIdentifier() == identifier) {
       return color;
     }
   }
   throw new Exception("Unknown color identifier " + identifier + '.');
 }