Using Java, how do I convert a human readable color name into a three-element integer array?
For example, I have a color represented by:
int[] RGB_COLOR = {128,25,25};
And I want to be able to convert the static value Color.BLUE into a three-element integer array that is similar to the one above. Is this possible or do I have to hack my way around this?