Uses of Interface
net.esper.view.CloneableView

Packages that use CloneableView
net.esper.view.ext Extension views that providing services such as sorting, which don't fit much into other categories. 
net.esper.view.stat Views computing statistical values. 
net.esper.view.std Base service views that perform typical SQL-like functions such as unique, grouping, size, last etc. 
net.esper.view.window Window views are in this package 
 

Uses of CloneableView in net.esper.view.ext
 

Classes in net.esper.view.ext that implement CloneableView
 class SortWindowView
          Window sorting by values in the specified field extending a specified number of elements from the lowest value up or the highest value down.
 

Uses of CloneableView in net.esper.view.stat
 

Classes in net.esper.view.stat that implement CloneableView
 class CorrelationView
          A view that calculates correlation on two fields.
 class MultiDimStatsView
          This view compiles OLAP cubes for the specified fields.
 class RegressionLinestView
          A view that calculates regression on two fields.
 class UnivariateStatisticsView
          View for computing statistics, which the view exposes via fields representing the sum, count, standard deviation for sample and for population and variance.
 class WeightedAverageView
          View for computing a weighted average.
 

Uses of CloneableView in net.esper.view.std
 

Classes in net.esper.view.std that implement CloneableView
 class AddPropertyValueView
          This view simply adds a property to the events posted to it.
 class GroupByView
          The group view splits the data in a stream to multiple subviews, based on a key index.
 class LastElementView
          This view is a very simple view presenting the last event posted by the parent view to any subviews.
 class MergeView
          The merge view works together with a group view that splits the data in a stream to multiple subviews, based on a key index.
 class SizeView
          This view is a very simple view presenting the number of elements in a stream or view.
 class UniqueByPropertyView
          This view includes only the most recent among events having the same value for the specified field.
 

Uses of CloneableView in net.esper.view.window
 

Classes in net.esper.view.window that implement CloneableView
 class ExternallyTimedWindowView
          View for a moving window extending the specified amount of time into the past, driven entirely by external timing supplied within long-type timestamp values in a field of the event beans that the view receives.
 class LengthBatchView
          A data view that aggregates events in a stream and releases them in one batch when a maximum number of events has been collected.
 class LengthWindowView
          This view is a moving window extending the specified number of elements into the past.
 class TimeBatchView
          A data view that aggregates events in a stream and releases them in one batch at every specified time interval.
 class TimeWindowView
          This view is a moving timeWindow extending the specified amount of milliseconds into the past.