com.lowagie.text.html
Class WebColors

java.lang.Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.HashMap
          extended by com.lowagie.text.html.WebColors
All Implemented Interfaces:
Serializable, Cloneable, Map

public class WebColors
extends HashMap

This 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

Nested Class Summary
 
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
 
Field Summary
static WebColors NAMES
          HashMap containing all the names and corresponding color values.
private static long serialVersionUID
           
 
Constructor Summary
WebColors()
           
 
Method Summary
static Color getRGBColor(String name)
          Gives you a Color based on a name.
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

NAMES

public static final WebColors NAMES
HashMap containing all the names and corresponding color values.

Constructor Detail

WebColors

public WebColors()
Method Detail

getRGBColor

public static Color getRGBColor(String name)
                         throws IllegalArgumentException
Gives 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:
IllegalArgumentException - if the String isn't a know representation of a color.

Hosted by Hostbasket