Uses of Interface
org.sonarsource.analyzer.commons.regex.ast.CharacterClassElementTree
-
Packages that use CharacterClassElementTree Package Description org.sonarsource.analyzer.commons.regex org.sonarsource.analyzer.commons.regex.ast org.sonarsource.analyzer.commons.regex.helpers -
-
Uses of CharacterClassElementTree in org.sonarsource.analyzer.commons.regex
Methods in org.sonarsource.analyzer.commons.regex that return CharacterClassElementTree Modifier and Type Method Description protected CharacterClassElementTreeRegexParser. parseCharacterClassElement(boolean isAtBeginning)protected CharacterClassElementTreeRegexParser. parseCharacterClassIntersection()protected CharacterClassElementTreeRegexParser. parseCharacterClassUnion(boolean isAtBeginning)protected CharacterClassElementTreeRegexParser. parseCharacterRange(CharacterTree startCharacter) -
Uses of CharacterClassElementTree in org.sonarsource.analyzer.commons.regex.ast
Classes in org.sonarsource.analyzer.commons.regex.ast that implement CharacterClassElementTree Modifier and Type Class Description classCharacterClassIntersectionTreeclassCharacterClassTreeclassCharacterClassUnionTreeclassCharacterRangeTreeclassCharacterTreeclassEscapedCharacterClassTreeclassMiscEscapeSequenceTreeThis class represents escape sequences inside regular expression that we don't particularly care about.classPosixCharacterClassElementTreeMethods in org.sonarsource.analyzer.commons.regex.ast that return CharacterClassElementTree Modifier and Type Method Description CharacterClassElementTreeCharacterClassTree. getContents()Methods in org.sonarsource.analyzer.commons.regex.ast that return types with arguments of type CharacterClassElementTree Modifier and Type Method Description List<CharacterClassElementTree>CharacterClassIntersectionTree. getCharacterClasses()List<CharacterClassElementTree>CharacterClassUnionTree. getCharacterClasses()Methods in org.sonarsource.analyzer.commons.regex.ast with parameters of type CharacterClassElementTree Modifier and Type Method Description voidRegexBaseVisitor. visitInCharClass(CharacterClassElementTree tree)Constructors in org.sonarsource.analyzer.commons.regex.ast with parameters of type CharacterClassElementTree Constructor Description CharacterClassTree(RegexSource source, IndexRange range, SourceCharacter openingBracket, boolean negated, CharacterClassElementTree contents, FlagSet activeFlags)Constructor parameters in org.sonarsource.analyzer.commons.regex.ast with type arguments of type CharacterClassElementTree Constructor Description CharacterClassIntersectionTree(RegexSource source, IndexRange range, List<CharacterClassElementTree> characterClasses, List<RegexToken> andOperators, FlagSet activeFlags)CharacterClassUnionTree(RegexSource source, IndexRange range, List<CharacterClassElementTree> characterClasses, FlagSet activeFlags) -
Uses of CharacterClassElementTree in org.sonarsource.analyzer.commons.regex.helpers
Methods in org.sonarsource.analyzer.commons.regex.helpers with parameters of type CharacterClassElementTree Modifier and Type Method Description voidSimplifiedRegexCharacterClass. add(CharacterClassElementTree tree)Constructors in org.sonarsource.analyzer.commons.regex.helpers with parameters of type CharacterClassElementTree Constructor Description SimplifiedRegexCharacterClass(CharacterClassElementTree tree)
-