- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap
-
- com.itextpdf.text.html.WebColors
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,java.util.Map
public class WebColors extends java.util.HashMapThis class is a HashMap that contains the names of colors as a key and the corresponding Color as value. (Source: Wikipedia http://en.wikipedia.org/wiki/Web_colors )- Author:
- blowagie
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebColors()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.awt.ColorgetRGBColor(java.lang.String name)Gives you a Color based on a name.-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Field Detail
-
NAMES
public static final WebColors NAMES
HashMap containing all the names and corresponding color values.
-
-
Method Detail
-
getRGBColor
public static java.awt.Color getRGBColor(java.lang.String name) throws java.lang.IllegalArgumentExceptionGives you a Color based on a name.- Parameters:
name- a name such as black, violet, cornflowerblue or #RGB or #RRGGBB or rgb(R,G,B)- Returns:
- the corresponding Color object
- Throws:
java.lang.IllegalArgumentException- if the String isn't a know representation of a color.
-
-