public class BackwardDFAStateNode extends DFAStateNode
successors| Modifier | Constructor and Description |
|---|---|
protected |
BackwardDFAStateNode(BackwardDFAStateNode copy,
short copyID) |
|
BackwardDFAStateNode(short id,
byte flags,
short loopTransitionIndex,
short indexOfNodeId,
byte indexOfIsFast,
short[] successors,
Matchers matchers,
DFASimpleCG simpleCG) |
| Modifier and Type | Method and Description |
|---|---|
DFAStateNode |
createNodeSplitCopy(short copyID)
Creates a copy of this state node, where all attributes are copied shallowly, except for the
DFAAbstractStateNode.successors array, which is deep-copied, and the node ID, which is replaced by the
parameter copyID. |
buildFlags, getIndexOfNodeId, getMatchers, getSequentialMatchers, hasBackwardPrefixState, hasIndexOfNodeId, hasLoopToSelf, isAnchoredFinalState, isFinalState, toJson, toString, utf16MustDecodegetId, getSuccessorspublic BackwardDFAStateNode(short id,
byte flags,
short loopTransitionIndex,
short indexOfNodeId,
byte indexOfIsFast,
short[] successors,
Matchers matchers,
DFASimpleCG simpleCG)
protected BackwardDFAStateNode(BackwardDFAStateNode copy, short copyID)
public DFAStateNode createNodeSplitCopy(short copyID)
DFAAbstractStateNodeDFAAbstractStateNode.successors array, which is deep-copied, and the node ID, which is replaced by the
parameter copyID. Used by DFANodeSplit.createNodeSplitCopy in class DFAStateNodecopyID - new ID for the copy.