|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Rule | |
---|---|
org.h2.bnf | The implementation of the BNF (Backus-Naur form) parser and tool. |
org.h2.server.web | The H2 Console tool. |
Uses of Rule in org.h2.bnf |
---|
Classes in org.h2.bnf that implement Rule | |
---|---|
class |
RuleElement
A single terminal rule in a BNF object. |
class |
RuleFixed
Represents a hard coded terminal rule in a BNF object. |
class |
RuleList
Represents a sequence of BNF rules, or a list of alternative rules. |
class |
RuleOptional
Represents an optional BNF rule. |
class |
RuleRepeat
Represents a loop in a BNF object. |
Methods in org.h2.bnf that return Rule | |
---|---|
Rule |
RuleHead.getRule()
|
Methods in org.h2.bnf with parameters of type Rule | |
---|---|
void |
BnfVisitor.visitRuleElement(boolean keyword,
java.lang.String name,
Rule link)
Visit a rule element. |
void |
BnfVisitor.visitRuleOptional(Rule rule)
Visit an optional rule. |
void |
BnfVisitor.visitRuleRepeat(boolean comma,
Rule rule)
Visit a repeat rule. |
Method parameters in org.h2.bnf with type arguments of type Rule | |
---|---|
void |
BnfVisitor.visitRuleList(boolean or,
java.util.ArrayList<Rule> list)
Visit a rule list. |
Uses of Rule in org.h2.server.web |
---|
Classes in org.h2.server.web that implement Rule | |
---|---|
class |
DbContextRule
A BNF terminal rule that is linked to the database context information. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |