@param hex e.g. "#FFFFFF" @deprecated use #rgb(String)
(final String hex)
| 108 | * @deprecated use {@link #rgb(String)} |
| 109 | */ |
| 110 | @Deprecated |
| 111 | public static int rgbToColor(final String hex) { |
| 112 | return intToColor( |
| 113 | Integer.parseInt(hex.substring(1, 3), 16), |
| 114 | Integer.parseInt(hex.substring(3, 5), 16), |
| 115 | Integer.parseInt(hex.substring(5, 7), 16) |
| 116 | ); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * @param hex e.g. "#FFFFFFFF" |