Get the colour represented by the specified code. @param code the code to search for @return the mapped colour, or null if non exists
(char code)
| 174 | * @return the mapped colour, or null if non exists |
| 175 | */ |
| 176 | public static ChatColor getByChar(char code) { |
| 177 | return BY_CHAR.get(code); |
| 178 | } |
| 179 | |
| 180 | public String getName() { |
| 181 | return name; |
no test coverage detected