Package org.sonar.java.regex.ast
Class EndOfCapturingGroupState
- java.lang.Object
-
- org.sonar.java.regex.ast.ActiveFlagsState
-
- org.sonar.java.regex.ast.EndOfCapturingGroupState
-
- All Implemented Interfaces:
AutomatonState
public class EndOfCapturingGroupState extends ActiveFlagsState
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sonar.java.regex.ast.AutomatonState
AutomatonState.TransitionType
-
-
Constructor Summary
Constructors Constructor Description EndOfCapturingGroupState(CapturingGroupTree group, FlagSet activeFlags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AutomatonState
continuation()
This will only return null when called on the end-of-regex stateCapturingGroupTree
group()
AutomatonState.TransitionType
incomingTransitionType()
-
Methods inherited from class org.sonar.java.regex.ast.ActiveFlagsState
activeFlags
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sonar.java.regex.ast.AutomatonState
successors
-
-
-
-
Constructor Detail
-
EndOfCapturingGroupState
public EndOfCapturingGroupState(CapturingGroupTree group, FlagSet activeFlags)
-
-
Method Detail
-
group
public CapturingGroupTree group()
-
continuation
@CheckForNull public AutomatonState continuation()
Description copied from interface:AutomatonState
This will only return null when called on the end-of-regex state
-
incomingTransitionType
@Nonnull public AutomatonState.TransitionType incomingTransitionType()
-
-