com.itextpdf.text.html.simpleparser
Class HTMLTagProcessors

java.lang.Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.HashMap<String,HTMLTagProcessor>
          extended by com.itextpdf.text.html.simpleparser.HTMLTagProcessors
All Implemented Interfaces:
Serializable, Cloneable, Map<String,HTMLTagProcessor>

public class HTMLTagProcessors
extends HashMap<String,HTMLTagProcessor>

This class maps tags such as div and span to their corresponding TagProcessor classes.

Since:
5.0.6
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 HTMLTagProcessor A
          Object that processes the a tag.
static HTMLTagProcessor BR
          Object that processes the br tag.
static HTMLTagProcessor DIV
           
static HTMLTagProcessor EM_STRONG_STRIKE_SUP_SUP
          Object that processes the following tags: i, em, b, strong, s, strike, u, sup, sub
static HTMLTagProcessor H
           
static HTMLTagProcessor HR
           
static HTMLTagProcessor IMG
           
static HTMLTagProcessor LI
           
static HTMLTagProcessor PRE
           
static HTMLTagProcessor SPAN
           
static HTMLTagProcessor TABLE
           
static HTMLTagProcessor TD
           
static HTMLTagProcessor TR
           
static HTMLTagProcessor UL_OL
           
 
Constructor Summary
HTMLTagProcessors()
          Creates a Map containing supported tags.
 
Method Summary
 
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

EM_STRONG_STRIKE_SUP_SUP

public static final HTMLTagProcessor EM_STRONG_STRIKE_SUP_SUP
Object that processes the following tags: i, em, b, strong, s, strike, u, sup, sub


A

public static final HTMLTagProcessor A
Object that processes the a tag.


BR

public static final HTMLTagProcessor BR
Object that processes the br tag.


UL_OL

public static final HTMLTagProcessor UL_OL

HR

public static final HTMLTagProcessor HR

SPAN

public static final HTMLTagProcessor SPAN

H

public static final HTMLTagProcessor H

LI

public static final HTMLTagProcessor LI

PRE

public static final HTMLTagProcessor PRE

DIV

public static final HTMLTagProcessor DIV

TABLE

public static final HTMLTagProcessor TABLE

TR

public static final HTMLTagProcessor TR

TD

public static final HTMLTagProcessor TD

IMG

public static final HTMLTagProcessor IMG
Constructor Detail

HTMLTagProcessors

public HTMLTagProcessors()
Creates a Map containing supported tags.