Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static PatternNotExpr |
Patterns.not(PatternExpr subexpression)
Not-keyword pattern expression flips the truth-value of the pattern sub-expression.
|
static PatternNotExpr |
Patterns.notFilter(Filter filter)
Pattern not-operator and filter in combination, equivalent to the "not MyEvent(vol > 100)" syntax.
|
static PatternNotExpr |
Patterns.notFilter(Filter filter,
String tagName)
Pattern not-operator and filter in combination, equivalent to the "not tag=MyEvent(vol > 100)" syntax.
|
static PatternNotExpr |
Patterns.notFilter(String eventTypeName)
Pattern not-operator and filter in combination, equivalent to the "not MyEvent" syntax.
|
static PatternNotExpr |
Patterns.notFilter(String name,
String tagName)
Pattern not-operator and filter in combination, equivalent to the "not tag=MyEvent" syntax.
|