com.itextpdf.text.html
Class WebColors

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

public class WebColors
extends HashMap<String,int[]>

This class is a HashMap that contains the names of colors as a key and the corresponding BaseColor as value. (Source: Wikipedia http://en.wikipedia.org/wiki/Web_colors )

Author:
blowagie
See Also:
Serialized Form

Field Summary
static WebColors NAMES
          HashMap containing all the names and corresponding color values.
 
Constructor Summary
WebColors()
           
 
Method Summary
static BaseColor getRGBColor(String name)
          Gives you a BaseColor 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

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 BaseColor getRGBColor(String name)
                             throws IllegalArgumentException
Gives you a BaseColor based on a name.

Parameters:
name - a name such as black, violet, cornflowerblue or #RGB or #RRGGBB or RGB or RRGGBB or rgb(R,G,B)
Returns:
the corresponding BaseColor object. Never returns null.
Throws:
IllegalArgumentException - if the String isn't a know representation of a color.


Copyright © 2013. All Rights Reserved.