| Package | Description |
|---|---|
| org.sfj |
| Modifier and Type | Method and Description |
|---|---|
PegLegParser.ParentRule |
PegLegParser.firstOf(Object... objs)
Core PEG rule "Choice", here called firstOf.
|
PegLegParser.ParentRule |
PegLegParser.onePlusOf(Object... objs)
Core PEG rule "OneOrMore", matches the given set of rules, greedily, one or more times.
|
PegLegParser.ParentRule |
PegLegParser.optOf(Object... objs)
Core PEG rule "Optional", matches the given set of rules, greedily, zero or one times.
|
PegLegParser.ParentRule |
PegLegParser.seqOf(Object... objs)
Core PEG rule: "Sequence".
|
PegLegParser.ParentRule |
PegLegParser.testNotOf(Object... objs)
Core PEG rule: "TestNot".
|
PegLegParser.ParentRule |
PegLegParser.testOf(Object... objs)
Core PEG Rule, "Test" returns true if sequence of rules matches, but does not consume input.
|
PegLegParser.ParentRule |
PegLegParser.timesOf(int min,
int max,
Object... objs)
Rule with matches only if matches set of rules between min and max times.
|
PegLegParser.ParentRule |
PegLegParser.timesOf(int many,
Object... objs)
Rule with matches only if matches set of rules exactly many times.
|
PegLegParser.ParentRule |
PegLegParser.zeroPlusOf(Object... objs)
Core PEG rule "ZeroOrMore", matches the given set of rules, greedily, zero or more times.
|
Copyright © 2020. All rights reserved.