|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ViewEnum>
net.esper.view.ViewEnum
public enum ViewEnum
Enum for all build-in views.
Enum Constant Summary | |
---|---|
CORRELATION
Correlation. |
|
EXT_TIMED_WINDOW
Externally timed window. |
|
GROUP_MERGE
Group-by merge. |
|
GROUP_PROPERTY
Group-by. |
|
LAST_EVENT
Last event. |
|
LENGTH_BATCH
Length batch window. |
|
LENGTH_WINDOW
Length window. |
|
MULTIDIM_VIEW
Cubes. |
|
PRIOR_EVENT_VIEW
Prior event view. |
|
REGRESSION_LINEST
Linest. |
|
SIZE
Size view. |
|
SORT_WINDOW
Sorted window. |
|
TIME_BATCH
Time batch. |
|
TIME_WINDOW
Time window. |
|
UNIQUE_BY_PROPERTY
Unique. |
|
UNIVARIATE_STATISTICS
Univariate statistics. |
|
WEIGHTED_AVERAGE
Weighted avg. |
Method Summary | |
---|---|
static ViewEnum |
forName(String namespace,
String name)
Returns the view enumeration value given the name of the view. |
Class |
getFactoryClass()
Returns a view's factory class. |
ViewEnum |
getMergeView()
Returns the enumeration value of the view for merging the data generated by another view. |
String |
getName()
Returns name of the view that can be used to reference the view in a view expression. |
String |
getNamespace()
Returns namespace that the object belongs to. |
static ViewEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ViewEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ViewEnum LENGTH_WINDOW
public static final ViewEnum LENGTH_BATCH
public static final ViewEnum TIME_WINDOW
public static final ViewEnum TIME_BATCH
public static final ViewEnum EXT_TIMED_WINDOW
public static final ViewEnum SIZE
public static final ViewEnum LAST_EVENT
public static final ViewEnum UNIQUE_BY_PROPERTY
public static final ViewEnum GROUP_MERGE
public static final ViewEnum GROUP_PROPERTY
public static final ViewEnum UNIVARIATE_STATISTICS
public static final ViewEnum WEIGHTED_AVERAGE
public static final ViewEnum CORRELATION
public static final ViewEnum REGRESSION_LINEST
public static final ViewEnum MULTIDIM_VIEW
public static final ViewEnum SORT_WINDOW
public static final ViewEnum PRIOR_EVENT_VIEW
Method Detail |
---|
public static final ViewEnum[] values()
for(ViewEnum c : ViewEnum.values()) System.out.println(c);
public static ViewEnum valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String getNamespace()
public String getName()
public ViewEnum getMergeView()
public Class getFactoryClass()
public static ViewEnum forName(String namespace, String name)
namespace
- is the namespace name of the viewname
- is the short name of the view as used in view expressions
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |