Uses of Interface
org.sonar.java.regex.ast.AutomatonState
-
Packages that use AutomatonState Package Description org.sonar.java.regex.ast -
-
Uses of AutomatonState in org.sonar.java.regex.ast
Classes in org.sonar.java.regex.ast that implement AutomatonState Modifier and Type Class Description classActiveFlagsStateclassAtomicGroupTreeclassBackReferenceTreeclassBoundaryTreeclassBranchStateclassCapturingGroupTreeclassCharacterClassTreeclassCharacterTreeBase class for PlainCharacterTree and UnicodeCodePointTreeclassDisjunctionTreeclassDotTreeclassEndOfCapturingGroupStateclassEndOfLookaroundStateclassEscapedCharacterClassTreeclassFinalStateclassGroupTreeclassLookAroundTreeclassMiscEscapeSequenceTreeThis class represents escape sequences inside regular expression that we don't particularly care about.classNegationStateclassNonCapturingGroupTreeclassPlainCharacterTreeclassRegexTreeclassRepetitionTreeclassSequenceTreeclassStartOfLookBehindStateclassStartStateclassUnicodeCodePointTreeRepresents 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 AutomatonState Modifier and Type Method Description AutomatonStateAutomatonState. continuation()This will only return null when called on the end-of-regex stateAutomatonStateBranchState. continuation()AutomatonStateEndOfCapturingGroupState. continuation()AutomatonStateEndOfLookaroundState. continuation()AutomatonStateFinalState. continuation()AutomatonStateNegationState. continuation()AutomatonStateRegexTree. continuation()AutomatonStateStartOfLookBehindState. continuation()AutomatonStateStartState. continuation()Methods in org.sonar.java.regex.ast that return types with arguments of type AutomatonState Modifier and Type Method Description default List<? extends AutomatonState>AutomatonState. successors()List<AutomatonState>BranchState. successors()List<? extends AutomatonState>DisjunctionTree. successors()List<? extends AutomatonState>FinalState. successors()List<AutomatonState>GroupTree. successors()List<AutomatonState>LookAroundTree. successors()List<AutomatonState>RepetitionTree. successors()List<AutomatonState>SequenceTree. successors()Methods in org.sonar.java.regex.ast with parameters of type AutomatonState Modifier and Type Method Description voidCapturingGroupTree. setContinuation(AutomatonState continuation)voidDisjunctionTree. setContinuation(AutomatonState continuation)voidGroupTree. setContinuation(AutomatonState continuation)protected voidGroupTree. setContinuation(AutomatonState continuation, RegexTree element)voidLookAroundTree. setContinuation(AutomatonState continuation)voidRegexTree. setContinuation(AutomatonState continuation)voidRepetitionTree. setContinuation(AutomatonState continuation)voidSequenceTree. setContinuation(AutomatonState continuation)Constructors in org.sonar.java.regex.ast with parameters of type AutomatonState Constructor Description NegationState(AutomatonState continuation, FlagSet activeFlags)StartOfLookBehindState(AutomatonState content, FlagSet activeFlags)StartState(AutomatonState continuation, FlagSet activeFlags)Constructor parameters in org.sonar.java.regex.ast with type arguments of type AutomatonState Constructor Description BranchState(RegexTree parent, List<AutomatonState> successors, FlagSet activeFlags)
-