Checks if this code is a color code as opposed to a format code. @return whether this ChatColor is a color code
()
| 295 | * @return whether this ChatColor is a color code |
| 296 | */ |
| 297 | public boolean isColor() { |
| 298 | return !isFormat && this != RESET; |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Gets the color represented by the specified color code |