Uses of Class
net.htmlparser.jericho.TagType

Uses of TagType in net.htmlparser.jericho
 

Subclasses of TagType in net.htmlparser.jericho
 class EndTagType
          Defines the syntax for an end tag type.
 class EndTagTypeGenericImplementation
          Provides a generic implementation of the abstract EndTagType class based on the most common end tag behaviour.
 class StartTagType
          Defines the syntax for a start tag type.
 class StartTagTypeGenericImplementation
          Provides a generic implementation of the abstract StartTagType class based on the most common start tag behaviour.
 

Methods in net.htmlparser.jericho that return TagType
 TagType StartTag.getTagType()
           
 TagType EndTag.getTagType()
           
abstract  TagType Tag.getTagType()
          Returns the type of this tag.
static TagType[] TagType.getTagTypesIgnoringEnclosedMarkup()
          Returns an array of all the tag types inside which the parser ignores all non-server tags in parse on demand mode.
 

Methods in net.htmlparser.jericho that return types with arguments of type TagType
static java.util.List<TagType> TagType.getRegisteredTagTypes()
          Returns a list of all the currently registered tag types in order of lowest to highest precedence.
 

Methods in net.htmlparser.jericho with parameters of type TagType
static boolean MicrosoftTagTypes.defines(TagType tagType)
          Indicates whether the specified tag type is defined in this class.
static boolean PHPTagTypes.defines(TagType tagType)
          Indicates whether the specified tag type is defined in this class.
static boolean MasonTagTypes.defines(TagType tagType)
          Indicates whether the specified tag type is defined in this class.
 java.util.List<Tag> Segment.getAllTags(TagType tagType)
          Returns a list of all Tag objects of the specified type that are enclosed by this segment.
 Tag Source.getEnclosingTag(int pos, TagType tagType)
          Returns the Tag of the specified type that encloses the specified position in the source document.
 Tag Source.getNextTag(int pos, TagType tagType)
          Returns the Tag of the specified type beginning at or immediately following the specified position in the source document.
 Tag Source.getPreviousTag(int pos, TagType tagType)
          Returns the Tag of the specified type beginning at or immediately preceding (or enclosing) the specified position in the source document.
static boolean MasonTagTypes.isParsedByMason(TagType tagType)
          Indicates whether the specified tag type is recognised by a Mason parser.
static boolean PHPTagTypes.isParsedByPHP(TagType tagType)
          Indicates whether the specified tag type is recognised by a PHP parser.
static void TagType.setTagTypesIgnoringEnclosedMarkup(TagType[] tagTypes)
          Sets the tag types inside which the parser ignores all non-server tags.