Package snap.parse
Class ParseRuleBuilder
java.lang.Object
snap.parse.ParseRuleBuilder
This class builds parse rules.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds an And rule to this rule with given pattern.Adds an And rule to this rule with given count and pattern.Adds an And rule to this rule with given rule.Adds an And rule to this rule with given rule.build()
Builds the rule.void
lookahead
(int aValue) Sets the look ahead count.Sets the name.op
(ParseRule.Op anOp) Sets the operator.Adds an Or rule to this rule with given pattern.Adds an Or rule to this rule with given count and pattern.Adds an Or rule to this rule with given rule.Adds an Or rule to this rule with given rule.Sets the pattern.void
Resets the rule.Sets the rule.
-
Constructor Details
-
ParseRuleBuilder
public ParseRuleBuilder()Constructor.
-
-
Method Details
-
name
Sets the name. -
op
Sets the operator. -
rule
Sets the rule. -
pattern
Sets the pattern. -
lookahead
public void lookahead(int aValue) Sets the look ahead count. -
or
Adds an Or rule to this rule with given pattern. -
or
Adds an Or rule to this rule with given count and pattern. -
or
Adds an Or rule to this rule with given rule. -
or
Adds an Or rule to this rule with given rule. -
and
Adds an And rule to this rule with given pattern. -
and
Adds an And rule to this rule with given count and pattern. -
and
Adds an And rule to this rule with given rule. -
and
Adds an And rule to this rule with given rule. -
build
Builds the rule. -
reset
Resets the rule.
-