Uses of Class
net.esper.filter.FilterParamIndex

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

Uses of FilterParamIndex in net.esper.filter
 

Subclasses of FilterParamIndex in net.esper.filter
 class FilterParamIndexCompare
          Index for filter parameter constants for the comparison operators (less, greater, etc).
 class FilterParamIndexEquals
          Index for filter parameter constants to match using the equals (=) operator.
 class FilterParamIndexNotEquals
          Index for filter parameter constants to match using the equals (=) operator.
 class FilterParamIndexRange
          Index for filter parameter constants for the range operators (range open/closed/half).
 

Methods in net.esper.filter that return FilterParamIndex
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.
 

Methods in net.esper.filter that return types with arguments of type FilterParamIndex
static Pair<FilterValueSetParam,FilterParamIndex> IndexHelper.findIndex(SortedSet<FilterValueSetParam> parameters, List<FilterParamIndex> indizes)
          Find an index that matches one of the filter parameters passed.
 List<FilterParamIndex> FilterCallbackSetNode.getIndizes()
          Returns list of indexes - not returning an iterator.
 Pair<FilterParamIndex,Object> IndexTreePath.removeFirst()
          Remove and return first index.
 

Methods in net.esper.filter with parameters of type FilterParamIndex
protected  void FilterCallbackSetNode.add(FilterParamIndex index)
          Add an index.
 void IndexTreePath.add(FilterParamIndex index, Object filteredForValue)
          Add an index to end of the list representing a path through indexes.
static FilterValueSetParam IndexHelper.findParameter(SortedSet<FilterValueSetParam> parameters, FilterParamIndex index)
          Determine among the passed in filter parameters any parameter that matches the given index on property name and filter operator type.
protected  boolean FilterCallbackSetNode.remove(FilterParamIndex index)
          Remove an index, returning true if it was found and removed or false if not in collection.
 

Method parameters in net.esper.filter with type arguments of type FilterParamIndex
static Pair<FilterValueSetParam,FilterParamIndex> IndexHelper.findIndex(SortedSet<FilterValueSetParam> parameters, List<FilterParamIndex> indizes)
          Find an index that matches one of the filter parameters passed.