Uses of Class
net.htmlparser.jericho.StartTagType
-
Packages that use StartTagType Package Description net.htmlparser.jericho Jericho HTML Parser 3.3 -
-
Uses of StartTagType in net.htmlparser.jericho
Subclasses of StartTagType in net.htmlparser.jericho Modifier and Type Class Description class
StartTagTypeGenericImplementation
Provides a generic implementation of the abstractStartTagType
class based on the most common start tag behaviour.Fields in net.htmlparser.jericho declared as StartTagType Modifier and Type Field Description static StartTagType
StartTagType. CDATA_SECTION
The tag type given to a CDATA section (<![CDATA[ ... ]]>
).static StartTagType
StartTagType. COMMENT
The tag type given to an HTML comment (<!-- ... -->
).static StartTagType
StartTagType. DOCTYPE_DECLARATION
The tag type given to a document type declaration (<!DOCTYPE ... >
).static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_HIDDEN_ENDIF
static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_HIDDEN_IF
static StartTagType
MicrosoftTagTypes. DOWNLEVEL_REVEALED_CONDITIONAL_COMMENT
Deprecated.static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_ENDIF
static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_IF
static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_VALIDATING_ENDIF
The tag type given to a validating downlevel-revealed conditional commentendif
tag (<!--<![endif]-->
).static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_VALIDATING_IF
The tag type given to a validating downlevel-revealed conditional commentif
tag (<!--[if ... ]><!-->
).static StartTagType
MicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_VALIDATING_SIMPLIFIED_IF
The tag type given to a validating simplified downlevel-revealed conditional commentif
tag (<!--[if ... ]>-->
).static StartTagType
StartTagType. MARKUP_DECLARATION
The tag type given to a markup declaration (<!ELEMENT ... >
|<!ATTLIST ... >
|<!ENTITY ... >
|<!NOTATION ... >
).static StartTagType
MasonTagTypes. MASON_COMPONENT_CALL
The tag type given to a Mason component call (<& ... &>
).static StartTagType
MasonTagTypes. MASON_COMPONENT_CALLED_WITH_CONTENT
The tag type given to the start tag of a Mason component called with content (<&| ... &> ... </&>
).static StartTagType
MasonTagTypes. MASON_NAMED_BLOCK
The tag type given to the start tag of a Mason named block (<%name ... > ... </%name>
).static StartTagType
StartTagType. NORMAL
The tag type given to a normal HTML or XML start tag (<name ... >
).static StartTagType
PHPTagTypes. PHP_SCRIPT
The tag type given to a script-style PHP start tag (<script language="php"> ... </script>
).static StartTagType
PHPTagTypes. PHP_SHORT
The tag type given to a short-form PHP tag (<? ... ?>
).static StartTagType
PHPTagTypes. PHP_STANDARD
The tag type given to a standard PHP tag (<?php ... ?>
).static StartTagType
StartTagType. SERVER_COMMON
The tag type given to a common server tag (<% ... %>
).static StartTagType
StartTagType. SERVER_COMMON_COMMENT
The tag type given to a common server comment tag (<%-- ... --%>
).static StartTagType
StartTagType. SERVER_COMMON_ESCAPED
The tag type given to an escaped common server tag (<\% ... %>
).static StartTagType
StartTagType. UNREGISTERED
static StartTagType
StartTagType. XML_DECLARATION
The tag type given to an XML declaration (<?xml ... ?>
).static StartTagType
StartTagType. XML_PROCESSING_INSTRUCTION
The tag type given to an XML processing instruction (<?PITarget ... ?>
).Methods in net.htmlparser.jericho that return StartTagType Modifier and Type Method Description StartTagType
EndTagType. getCorrespondingStartTagType()
StartTagType
StartTag. getStartTagType()
Returns the type of this start tag.Methods in net.htmlparser.jericho with parameters of type StartTagType Modifier and Type Method Description java.util.List<Element>
Segment. getAllElements(StartTagType startTagType)
java.util.List<StartTag>
Segment. getAllStartTags(StartTagType startTagType)
StartTag
Segment. getFirstStartTag(StartTagType startTagType)
StartTag
Source. getNextStartTag(int pos, java.lang.String name, StartTagType startTagType)
StartTag
Source. getNextStartTag(int pos, StartTagType startTagType)
StartTag
Source. getPreviousStartTag(int pos, java.lang.String name, StartTagType startTagType)
StartTag
Source. getPreviousStartTag(int pos, StartTagType startTagType)
-