Package org.sonar.java.regex.ast
Class EndOfRepetitionState
- java.lang.Object
-
- org.sonar.java.regex.ast.EndOfRepetitionState
-
- All Implemented Interfaces:
AutomatonState
public class EndOfRepetitionState extends Object implements AutomatonState
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sonar.java.regex.ast.AutomatonState
AutomatonState.TransitionType
-
-
Constructor Summary
Constructors Constructor Description EndOfRepetitionState(RepetitionTree parent, AutomatonState continuation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FlagSet
activeFlags()
AutomatonState
continuation()
This will only return null when called on the end-of-regex stateAutomatonState.TransitionType
incomingTransitionType()
-
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
-
EndOfRepetitionState
public EndOfRepetitionState(RepetitionTree parent, AutomatonState continuation)
-
-
Method Detail
-
activeFlags
@Nonnull public FlagSet activeFlags()
- Specified by:
activeFlags
in interfaceAutomatonState
-
continuation
@CheckForNull public AutomatonState continuation()
Description copied from interface:AutomatonState
This will only return null when called on the end-of-regex state- Specified by:
continuation
in interfaceAutomatonState
-
incomingTransitionType
@Nonnull public AutomatonState.TransitionType incomingTransitionType()
- Specified by:
incomingTransitionType
in interfaceAutomatonState
-
-