Package | Description |
---|---|
com.massa.dsl.matcher | |
com.massa.mrules.extensions.dsl.factory |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCombineLexerMatcher
Common code for combining matchers (or / and).
|
class |
AbstractLeafLexerMatcher
Common code for leaf matchers, i.e. not relying on sub matchers.
|
class |
AndLexerMatcher
Allows to multiplex several matching patterns, all of them must match in the defined order.
|
class |
DynamicLexerMatcher
Allows to match a part of a lexeme depending on previously encountered lexeme parts.
|
class |
EofMatcher
Typically last end matcher to be performed, to check that no unusefull characters are present at the end of the file.
|
class |
FixedLexerMatcher
Allows to match a part of a lexeme with a constant string.
|
class |
LexerBlockMatcher
Matcher with sub lexer block.
|
class |
MultipleFixedLexerMatcher
Allows to match a part of a lexeme with a choice of constant strings.
|
class |
NoopLexerMatcher
Specifies a match directly OK with specified weight.
|
class |
OrLexerMatcher
Allows to multiplex several matching patterns, one of them must match.
|
class |
RegexLexerMatcher
Allows to match a part of a lexeme with a regular expression.
|
Modifier and Type | Method and Description |
---|---|
protected abstract boolean |
AbstractLexerMatcher.internalEquals(AbstractLexerMatcher obj) |
protected boolean |
AbstractCombineLexerMatcher.internalEquals(AbstractLexerMatcher obj) |
protected boolean |
AbstractLeafLexerMatcher.internalEquals(AbstractLexerMatcher obj) |
Modifier and Type | Class and Description |
---|---|
class |
PropertyLexerMatcher
Specific matcher for property access parsing.
|