com.hp.hpl.jena.graph.query.regexptrees |
|
Java Source File Name | Type | Comment |
Alternatives.java | Class | Alt - expresses patterns which are an (ordered) sequence of alternatives. |
AnyOf.java | Class | |
AnySingle.java | Class | AnySingle - a pattern that matches any single character. |
BackReference.java | Class | BackReference - class describing back-references in regular expressions. |
EndOfLine.java | Class | EndOfLine - a pattern that matches the empty string at the end of a line
(ie just before a newline or the end of the subject string). |
MultiOperandTree.java | Class | |
NoneOf.java | Class | |
Nothing.java | Class | |
OneOrMore.java | Class | OneOrMore - expresses a pattern that matches at least one, and maybe more,
of the operand expression. |
Optional.java | Class | Optional - expresses a pattern which may or may not match the operand
expression. |
Paren.java | Class | Class which represents parenthesised regular expressions. |
PerlPatternParser.java | Class | Parse Perl5 patterns into RegexpTree structures, or throw an exception for
cases that haven't been implemented. |
RegexpTree.java | Class | RegexpTree - the abstract base class for trees representing regular
expressions, used to communicate between query languages and query
back ends that need to do interesting compiling. |
RegexpTreeGenerator.java | Interface | A RegexpTreeGenerator supplies appropriate RegexpTrees; different users
of the RegexpTree parsers can supply specialised generators that produce
instances appropriate to their needs, or fail by throwing an exception. |
Repeated.java | Class | Repeated - abstract base class for quantified repetitions of some operand
expression. |
Sequence.java | Class | A sequence of regular expressions. |
SimpleGenerator.java | Class | |
StartOfLine.java | Class | StartOfLine - a pattern that matches the empty string at the start of a line,
ie after a newline or at the beginning of the subject string. |
Text.java | Class | Text - represents literal text for the match, to be taken as it stands. |
ZeroOrMore.java | Class | ZeroOrMore - expresses 0-or-more repetitions of some oeprand expression. |