public class Unmatched
extends java.lang.Object
contains actions to switch the default behaviour of a DfaRun
object.
The static FaAction
objects supplied here do not allow
to change their priority. If it is really necessary to have such an
object with a different priority than zero, wrap it into a Run
object and call AbstractFaAction.setPriority(int)
for
it.
Modifier and Type | Field and Description |
---|---|
static FaAction |
COPY
change the default behaviour of the calling
DfaRun to DfaRun.UNMATCHED_COPY . |
static FaAction |
DROP
change the default behaviour of the calling
DfaRun to DfaRun.UNMATCHED_DROP . |
static FaAction |
THROW
change the default behaviour of the calling
DfaRun to DfaRun.UNMATCHED_THROW . |
public static final FaAction DROP
change the default behaviour of the calling DfaRun
to DfaRun.UNMATCHED_DROP
.
public static final FaAction COPY
change the default behaviour of the calling DfaRun
to DfaRun.UNMATCHED_COPY
.
public static final FaAction THROW
change the default behaviour of the calling DfaRun
to DfaRun.UNMATCHED_THROW
.