Uses of Class
net.htmlparser.jericho.EndTagType

Uses of EndTagType in net.htmlparser.jericho
 

Subclasses of EndTagType in net.htmlparser.jericho
 class EndTagTypeGenericImplementation
          Provides a generic implementation of the abstract EndTagType class based on the most common end tag behaviour.
 

Fields in net.htmlparser.jericho declared as EndTagType
static EndTagType MasonTagTypes.MASON_COMPONENT_CALLED_WITH_CONTENT_END
          The tag type given to the end tag of a Mason component called with content.
static EndTagType MasonTagTypes.MASON_NAMED_BLOCK_END
          The tag type given to the end tag of a Mason named block.
static EndTagType EndTagType.NORMAL
          The tag type given to a normal HTML or XML end tag (</name>).
static EndTagType EndTagType.UNREGISTERED
          The tag type given to an unregistered end tag (</ ... >).
 

Methods in net.htmlparser.jericho that return EndTagType
 EndTagType StartTagType.getCorrespondingEndTagType()
          Returns the type of end tag required to pair with a start tag of this type to form an element.
 EndTagType EndTag.getEndTagType()
          Returns the type of this end tag.
 

Methods in net.htmlparser.jericho with parameters of type EndTagType
 EndTag Source.getNextEndTag(int pos, EndTagType endTagType)
          Returns the EndTag of the specified type beginning at or immediately following the specified position in the source document.
 EndTag Source.getNextEndTag(int pos, String name, EndTagType endTagType)
          Returns the EndTag with the specified name and type beginning at or immediately following the specified position in the source document.
 EndTag Source.getPreviousEndTag(int pos, EndTagType endTagType)
          Returns the EndTag of the specified type at or immediately preceding (or enclosing) the specified position in the source document.
 

Constructors in net.htmlparser.jericho with parameters of type EndTagType
StartTagType(String description, String startDelimiter, String closingDelimiter, EndTagType correspondingEndTagType, boolean isServerTag, boolean hasAttributes, boolean isNameAfterPrefixRequired)
          Constructs a new StartTagType object with the specified properties.
StartTagTypeGenericImplementation(String description, String startDelimiter, String closingDelimiter, EndTagType correspondingEndTagType, boolean isServerTag)
          Constructs a new StartTagTypeGenericImplementation object with the specified properties.
StartTagTypeGenericImplementation(String description, String startDelimiter, String closingDelimiter, EndTagType correspondingEndTagType, boolean isServerTag, boolean hasAttributes, boolean isNameAfterPrefixRequired)
          Constructs a new StartTagTypeGenericImplementation object with the specified properties.