public class HSBAColorFormat extends TupleColorFormat
| Name | HSBAColorFormat |
|---|---|
| Format | |
| Description |
|
| Example of valid values |
|
| Notes |
|
| Links |
HSVAColorFormat,
TupleColorFormat,
http://colorizer.org/,
http://stackoverflow.com/questions/17242144/javascript-convert-hsb-hsv-color-to-rgb-accurately,
Serialized Formlogger| Constructor and Description |
|---|
HSBAColorFormat() |
| Modifier and Type | Method and Description |
|---|---|
String |
format(Color color)
Formats the color to a string representation of this format.
|
String |
getColorMethodName()
The method name which identifies the color method (aka rgb, rgba, hsl, hsla etc.)
|
boolean |
isAlphaSupported()
Do the implemtation supports Alpha (opacity).
|
Color |
parse(String text)
Parse a text string to a Color.
|
formatColorMethod, formatTuples, getLogger, getMethodTokens, isOfColorMethodFormat, limitsValue, limitsValue, limitsValue, parseFloatToken, parseIntToken, parsePercentageToken, parseRGBToken, validateRangepublic String getColorMethodName()
TupleColorFormatgetColorMethodName in class TupleColorFormatpublic boolean isAlphaSupported()
ColorFormattrue if the ColorFormat supports Alpha, otherwise false.public Color parse(String text) throws ColorFormatException
ColorFormattext - a text string with the color format.ColorFormatException - if the text is null or can not be parse by this format.Colorpublic String format(Color color) throws NullPointerException
ColorFormatcolor - the color.NullPointerException - if color is null.