Uses of Class
org.sonar.java.regex.ast.CharacterTree
-
Packages that use CharacterTree Package Description org.sonar.java.regex.ast -
-
Uses of CharacterTree in org.sonar.java.regex.ast
Subclasses of CharacterTree in org.sonar.java.regex.ast Modifier and Type Class Description class
PlainCharacterTree
class
UnicodeCodePointTree
Represents the \\x{N...N} sequence in a regular expression, which specifies a single Unicode code point.Methods in org.sonar.java.regex.ast that return CharacterTree Modifier and Type Method Description CharacterTree
CharacterRangeTree. getLowerBound()
CharacterTree
CharacterRangeTree. getUpperBound()
Methods in org.sonar.java.regex.ast with parameters of type CharacterTree Modifier and Type Method Description protected void
RegexBaseVisitor. visitCharacter(CharacterTree tree)
Override to visit both PlainCharacterTrees and UnicodeCodePointTreesConstructors in org.sonar.java.regex.ast with parameters of type CharacterTree Constructor Description CharacterRangeTree(RegexSource source, IndexRange range, CharacterTree lowerBound, CharacterTree upperBound, FlagSet activeFlags)
-