Uses of Class
net.htmlparser.jericho.EndTagType
-
Packages that use EndTagType Package Description net.htmlparser.jericho Jericho HTML Parser 3.3 -
-
Uses of EndTagType in net.htmlparser.jericho
Subclasses of EndTagType in net.htmlparser.jericho Modifier and Type Class Description class
EndTagTypeGenericImplementation
Provides a generic implementation of the abstractEndTagType
class based on the most common end tag behaviour.Fields in net.htmlparser.jericho declared as EndTagType Modifier and Type Field Description 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
Methods in net.htmlparser.jericho that return EndTagType Modifier and Type Method Description EndTagType
StartTagType. getCorrespondingEndTagType()
EndTagType
EndTag. getEndTagType()
Returns the type of this end tag.Methods in net.htmlparser.jericho with parameters of type EndTagType Modifier and Type Method Description EndTag
Source. getNextEndTag(int pos, java.lang.String name, EndTagType endTagType)
EndTag
Source. getNextEndTag(int pos, EndTagType endTagType)
EndTag
Source. getPreviousEndTag(int pos, EndTagType endTagType)
Constructors in net.htmlparser.jericho with parameters of type EndTagType Constructor Description StartTagType(java.lang.String description, java.lang.String startDelimiter, java.lang.String closingDelimiter, EndTagType correspondingEndTagType, boolean isServerTag, boolean hasAttributes, boolean isNameAfterPrefixRequired)
Constructs a newStartTagType
object with the specified properties.StartTagTypeGenericImplementation(java.lang.String description, java.lang.String startDelimiter, java.lang.String closingDelimiter, EndTagType correspondingEndTagType, boolean isServerTag)
Constructs a newStartTagTypeGenericImplementation
object with the specified properties.StartTagTypeGenericImplementation(java.lang.String description, java.lang.String startDelimiter, java.lang.String closingDelimiter, EndTagType correspondingEndTagType, boolean isServerTag, boolean hasAttributes, boolean isNameAfterPrefixRequired)
Constructs a newStartTagTypeGenericImplementation
object with the specified properties.
-