Uses of Class
net.esper.filter.FilterOperator

Packages that use FilterOperator
net.esper.filter Main switchboard filtering and routing of incoming events to interested statements is performed in this package. 
 

Uses of FilterOperator in net.esper.filter
 

Methods in net.esper.filter that return FilterOperator
 FilterOperator FilterValueSetParamImpl.getFilterOperator()
           
 FilterOperator FilterValueSetParam.getFilterOperator()
          Returns the filter operator type.
 FilterOperator FilterSpecParam.getFilterOperator()
          Returns the filter operator type.
 FilterOperator FilterParamIndex.getFilterOperator()
          Returns the filter operator that the index matches for.
static FilterOperator FilterOperator.parseComparisonOperator(String operator)
          Parse the comparison operator returning null if not a valid operator.
static FilterOperator FilterOperator.parseRangeOperator(boolean isInclusiveFirst, boolean isInclusiveLast, boolean isNot)
          Parse the range operator from booleans describing whether the start or end values are exclusive.
static FilterOperator FilterOperator.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FilterOperator[] FilterOperator.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in net.esper.filter with parameters of type FilterOperator
static FilterParamIndex IndexFactory.createIndex(EventType eventType, String propertyName, FilterOperator filterOperator)
          Factory for indexes that store filter parameter constants for a given event property and filter operator.
 

Constructors in net.esper.filter with parameters of type FilterOperator
FilterParamIndex(String propertyName, FilterOperator filterOperator, EventType eventType)
          Constructor.
FilterParamIndexCompare(String propertyName, FilterOperator filterOperator, EventType eventType)
          Constructs the index for matching comparison operators (<, >, <=, >=).
FilterParamIndexNotRange(String attributeName, FilterOperator filterOperator, EventType eventType)
          Constructs the index for matching ranges.
FilterParamIndexRange(String attributeName, FilterOperator filterOperator, EventType eventType)
          Constructs the index for matching ranges.
FilterSpecParamConstant(String propertyName, FilterOperator filterOperator, Object filterConstant)
          Constructor.
FilterSpecParamEventProp(String propertyName, FilterOperator filterOperator, String resultEventAsName, String resultEventProperty)
          Constructor.
FilterSpecParamIn(String propertyName, FilterOperator filterOperator, List<FilterSpecParamInValue> listofValues, boolean isAllConstants, Class propertyType)
          Ctor.
FilterSpecParamRange(String propertyName, FilterOperator filterOperator, FilterSpecParamRangeValue min, FilterSpecParamRangeValue max)
          Constructor.
FilterValueSetParamImpl(String propertyName, FilterOperator filterOperator, Object filterValue)
          Ctor.