Uses of Interface
org.h2.bnf.Rule

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()
           
 Rule RuleElement.last()
           
 Rule Rule.last()
          Get the last entry.
 Rule RuleFixed.last()
           
 Rule RuleOptional.last()
           
 Rule RuleList.last()
           
 Rule RuleRepeat.last()
           
 

Methods in org.h2.bnf with parameters of type Rule
 void RuleHead.setRule(Rule rule)
           
 

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.
 

Methods in org.h2.server.web that return Rule
 Rule DbContextRule.last()