Uses of Class
net.esper.client.soda.PatternNotExpr

Packages that use PatternNotExpr
net.esper.client.soda This package defines the Esper statement object model. 
 

Uses of PatternNotExpr in net.esper.client.soda
 

Methods in net.esper.client.soda that return PatternNotExpr
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 alias)
          Pattern not-operator and filter in combination, equivalent to the "not MyEvent" syntax.
static PatternNotExpr Patterns.notFilter(String alias, String tagName)
          Pattern not-operator and filter in combination, equivalent to the "not tag=MyEvent" syntax.