public static interface

TemplateParser.ComplexRuleBuilder

chan.text.TemplateParser.ComplexRuleBuilder<H>
Known Indirect Subclasses

Class Overview

Parser builder.

Summary

Public Methods
abstract ComplexBuilder<H> contains(String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute contains value.

abstract ComplexBuilder<H> ends(String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute ends with value.

abstract ComplexBuilder<H> equals(String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute equals value.

abstract ComplexBuilder<H> starts(String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute starts with value.

Public Methods

public abstract ComplexBuilder<H> contains (String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute contains value.

Parameters
tagName String: Tag name.
attribute String: Attribute name.
value String: Attribute value.
Returns
ComplexBuilder<H> Parser builder.

public abstract ComplexBuilder<H> ends (String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute ends with value.

Parameters
tagName String: Tag name.
attribute String: Attribute name.
value String: Attribute value.
Returns
ComplexBuilder<H> Parser builder.

public abstract ComplexBuilder<H> equals (String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute equals value.

Parameters
tagName String: Tag name.
attribute String: Attribute name.
value String: Attribute value.
Returns
ComplexBuilder<H> Parser builder.

public abstract ComplexBuilder<H> starts (String tagName, String attribute, String value)

Indicates the parser to react on tagName tags which has an attribute starts with value.

Parameters
tagName String: Tag name.
attribute String: Attribute name.
value String: Attribute value.
Returns
ComplexBuilder<H> Parser builder.