public enum ExtractorPatternEventFireTime extends java.lang.Enum<ExtractorPatternEventFireTime> implements EventFireTime<ExtractorPatternEventData>
| Enum Constant and Description |
|---|
AfterEachExtractorMatch
After each match of an extractor.
|
AfterExtractorPattern
After an extractor is applied (including after any scripts on it run)
|
AfterExtractorPatternAppliedButBeforeScripts
After an extractor is applied (but before any scripts on it run -- including the after each pattern match scripts)
|
BeforeExtractorPattern
Before an extractor is applied (including before any scripts on it run).
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getDefaultReturnValue(ExtractorPatternEventData data)
Gets the default value to return for this time from the data
|
static ExtractorPatternEventFireTime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtractorPatternEventFireTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractorPatternEventFireTime BeforeExtractorPattern
public static final ExtractorPatternEventFireTime AfterExtractorPatternAppliedButBeforeScripts
public static final ExtractorPatternEventFireTime AfterEachExtractorMatch
public static final ExtractorPatternEventFireTime AfterExtractorPattern
public static ExtractorPatternEventFireTime[] values()
for (ExtractorPatternEventFireTime c : ExtractorPatternEventFireTime.values()) System.out.println(c);
public static ExtractorPatternEventFireTime valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null@Nullable public java.lang.Object getDefaultReturnValue(ExtractorPatternEventData data)
getDefaultReturnValue in interface EventFireTime<ExtractorPatternEventData>data - The default value to return