rabbit.html
Class TagType

java.lang.Object
  extended by rabbit.html.TagType

public class TagType
extends Object

This is a class that holds common tagtypes.

Author:
Robert Olofsson

Field Summary
static TagType A
          Start of an A-tag
static TagType APPLET
          Start of an APPLET-tag
static TagType B
          Start of an B-tag
static TagType BLINK
          Start of an BLINK-tag
static TagType BODY
          Start of an BODY-tag
static TagType BR
          A BR-tag
static TagType DIV
          Start of an DIV-tag
static TagType DOCTYPE
          Start of an DOCTYPE-tag
static TagType FONT
          Start of an FONT-tag
static TagType FORM
          Start of an FORM-tag
static TagType FRAMESET
          Start of an FRAMESET-tag
static TagType HEAD
          Start of an HEAD-tag
static TagType HTML
          Start of an HTML-tag
static TagType IMG
          Start of an IMG-tag
static TagType INPUT
          Start of an INPUT-tag
static TagType LAYER
          Start of an LAYER-tag
static TagType LI
          Start of an LI-tag
static TagType META
          Start of an META-tag
static TagType OBJECT
          Start of an OBJECT-tag
static TagType P
          Start of an P-tag
static TagType SA
          End of an A-tag
static TagType SAPPLET
          End of an APPLET-tag
static TagType SB
          End of an B-tag
static TagType SBLINK
          End of an BLINK-tag
static TagType SBODY
          End of an BODY-tag
static TagType SCRIPT
          Start of an SCRIPT-tag
static TagType SDIV
          End of an DIV-tag
static TagType SFONT
          End of an FONT-tag
static TagType SFORM
          End of an FORM-tag
static TagType SFRAMESET
          End of an FRAMESET-tag
static TagType SHEAD
          End of an HEAD-tag
static TagType SHTML
          End of an HTML-tag
static TagType SIMG
          End of an IMG-tag
static TagType SLAYER
          End of an LAYER-tag
static TagType SLI
          End of an LI-tag
static TagType SMETA
          End of an META-tag
static TagType SOBJECT
          End of an OBJECT-tag
static TagType SP
          End of an P-tag
static TagType SPAN
          Start of an SPAN-tag
static TagType SSCRIPT
          End of an SCRIPT-tag
static TagType SSPAN
          End of an SPAN-tag
static TagType SSTYLE
          End of an STYLE-tag
static TagType STABLE
          End of an TABLE-tag
static TagType STD
          End of an TD-tag
static TagType STITLE
          End of an TITLE-tag
static TagType STR
          End of an TR-tag
static TagType STT
          End of an TT-tag
static TagType STYLE
          Start of an STYLE-tag
static TagType TABLE
          Start of an TABLE-tag
static TagType TD
          Start of an TD-tag
static TagType TITLE
          Start of an TITLE-tag
static TagType TR
          Start of an TR-tag
static TagType TT
          Start of an TT-tag
 
Method Summary
static TagType getTagType(String type)
          Get the TagType matching the given String.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

A

public static final TagType A
Start of an A-tag


SA

public static final TagType SA
End of an A-tag


APPLET

public static final TagType APPLET
Start of an APPLET-tag


SAPPLET

public static final TagType SAPPLET
End of an APPLET-tag


IMG

public static final TagType IMG
Start of an IMG-tag


SIMG

public static final TagType SIMG
End of an IMG-tag


LAYER

public static final TagType LAYER
Start of an LAYER-tag


SLAYER

public static final TagType SLAYER
End of an LAYER-tag


OBJECT

public static final TagType OBJECT
Start of an OBJECT-tag


SOBJECT

public static final TagType SOBJECT
End of an OBJECT-tag


SCRIPT

public static final TagType SCRIPT
Start of an SCRIPT-tag


SSCRIPT

public static final TagType SSCRIPT
End of an SCRIPT-tag


STYLE

public static final TagType STYLE
Start of an STYLE-tag


SSTYLE

public static final TagType SSTYLE
End of an STYLE-tag


BODY

public static final TagType BODY
Start of an BODY-tag


SBODY

public static final TagType SBODY
End of an BODY-tag


TABLE

public static final TagType TABLE
Start of an TABLE-tag


STABLE

public static final TagType STABLE
End of an TABLE-tag


TR

public static final TagType TR
Start of an TR-tag


STR

public static final TagType STR
End of an TR-tag


TD

public static final TagType TD
Start of an TD-tag


STD

public static final TagType STD
End of an TD-tag


BLINK

public static final TagType BLINK
Start of an BLINK-tag


SBLINK

public static final TagType SBLINK
End of an BLINK-tag


DOCTYPE

public static final TagType DOCTYPE
Start of an DOCTYPE-tag


HTML

public static final TagType HTML
Start of an HTML-tag


SHTML

public static final TagType SHTML
End of an HTML-tag


HEAD

public static final TagType HEAD
Start of an HEAD-tag


SHEAD

public static final TagType SHEAD
End of an HEAD-tag


BR

public static final TagType BR
A BR-tag


FONT

public static final TagType FONT
Start of an FONT-tag


SFONT

public static final TagType SFONT
End of an FONT-tag


LI

public static final TagType LI
Start of an LI-tag


SLI

public static final TagType SLI
End of an LI-tag


B

public static final TagType B
Start of an B-tag


SB

public static final TagType SB
End of an B-tag


P

public static final TagType P
Start of an P-tag


SP

public static final TagType SP
End of an P-tag


TT

public static final TagType TT
Start of an TT-tag


STT

public static final TagType STT
End of an TT-tag


SPAN

public static final TagType SPAN
Start of an SPAN-tag


SSPAN

public static final TagType SSPAN
End of an SPAN-tag


DIV

public static final TagType DIV
Start of an DIV-tag


SDIV

public static final TagType SDIV
End of an DIV-tag


FORM

public static final TagType FORM
Start of an FORM-tag


SFORM

public static final TagType SFORM
End of an FORM-tag


INPUT

public static final TagType INPUT
Start of an INPUT-tag


META

public static final TagType META
Start of an META-tag


SMETA

public static final TagType SMETA
End of an META-tag


TITLE

public static final TagType TITLE
Start of an TITLE-tag


STITLE

public static final TagType STITLE
End of an TITLE-tag


FRAMESET

public static final TagType FRAMESET
Start of an FRAMESET-tag


SFRAMESET

public static final TagType SFRAMESET
End of an FRAMESET-tag

Method Detail

getTagType

public static TagType getTagType(String type)
Get the TagType matching the given String.

Parameters:
type - the String to get the TagType for
Returns:
a TagType or null if no matching TagType exists

toString

public String toString()
Overrides:
toString in class Object