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 classStartTagTypeGenericImplementationProvides a generic implementation of the abstractStartTagTypeclass based on the most common start tag behaviour.Fields in net.htmlparser.jericho declared as StartTagType Modifier and Type Field Description static StartTagTypeStartTagType. CDATA_SECTIONThe tag type given to a CDATA section (<![CDATA[ ... ]]>).static StartTagTypeStartTagType. COMMENTThe tag type given to an HTML comment (<!-- ... -->).static StartTagTypeStartTagType. DOCTYPE_DECLARATIONThe tag type given to a document type declaration (<!DOCTYPE ... >).static StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_HIDDEN_ENDIFstatic StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_HIDDEN_IFstatic StartTagTypeMicrosoftTagTypes. DOWNLEVEL_REVEALED_CONDITIONAL_COMMENTDeprecated.static StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_ENDIFstatic StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_IFstatic StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_VALIDATING_ENDIFThe tag type given to a validating downlevel-revealed conditional commentendiftag (<!--<![endif]-->).static StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_VALIDATING_IFThe tag type given to a validating downlevel-revealed conditional commentiftag (<!--[if ... ]><!-->).static StartTagTypeMicrosoftConditionalCommentTagTypes. DOWNLEVEL_REVEALED_VALIDATING_SIMPLIFIED_IFThe tag type given to a validating simplified downlevel-revealed conditional commentiftag (<!--[if ... ]>-->).static StartTagTypeStartTagType. MARKUP_DECLARATIONThe tag type given to a markup declaration (<!ELEMENT ... >|<!ATTLIST ... >|<!ENTITY ... >|<!NOTATION ... >).static StartTagTypeMasonTagTypes. MASON_COMPONENT_CALLThe tag type given to a Mason component call (<& ... &>).static StartTagTypeMasonTagTypes. MASON_COMPONENT_CALLED_WITH_CONTENTThe tag type given to the start tag of a Mason component called with content (<&| ... &> ... </&>).static StartTagTypeMasonTagTypes. MASON_NAMED_BLOCKThe tag type given to the start tag of a Mason named block (<%name ... > ... </%name>).static StartTagTypeStartTagType. NORMALThe tag type given to a normal HTML or XML start tag (<name ... >).static StartTagTypePHPTagTypes. PHP_SCRIPTThe tag type given to a script-style PHP start tag (<script language="php"> ... </script>).static StartTagTypePHPTagTypes. PHP_SHORTThe tag type given to a short-form PHP tag (<? ... ?>).static StartTagTypePHPTagTypes. PHP_STANDARDThe tag type given to a standard PHP tag (<?php ... ?>).static StartTagTypeStartTagType. SERVER_COMMONThe tag type given to a common server tag (<% ... %>).static StartTagTypeStartTagType. SERVER_COMMON_COMMENTThe tag type given to a common server comment tag (<%-- ... --%>).static StartTagTypeStartTagType. SERVER_COMMON_ESCAPEDThe tag type given to an escaped common server tag (<\% ... %>).static StartTagTypeStartTagType. UNREGISTEREDstatic StartTagTypeStartTagType. XML_DECLARATIONThe tag type given to an XML declaration (<?xml ... ?>).static StartTagTypeStartTagType. XML_PROCESSING_INSTRUCTIONThe tag type given to an XML processing instruction (<?PITarget ... ?>).Methods in net.htmlparser.jericho that return StartTagType Modifier and Type Method Description StartTagTypeEndTagType. getCorrespondingStartTagType()StartTagTypeStartTag. 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)StartTagSegment. getFirstStartTag(StartTagType startTagType)StartTagSource. getNextStartTag(int pos, java.lang.String name, StartTagType startTagType)StartTagSource. getNextStartTag(int pos, StartTagType startTagType)StartTagSource. getPreviousStartTag(int pos, java.lang.String name, StartTagType startTagType)StartTagSource. getPreviousStartTag(int pos, StartTagType startTagType)
-