|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ViewFieldEnum>
net.esper.view.ViewFieldEnum
public enum ViewFieldEnum
Enumerates the valid values for each view's public fields. The name of the field or property can be used to obtain values from the view rather than using the hardcoded String value for the field.
Enum Constant Summary | |
---|---|
CORRELATION__CORRELATION
Correlation. |
|
MULTIDIM_OLAP__CUBE
Cube. |
|
REGRESSION__SLOPE
Slope. |
|
REGRESSION__YINTERCEPT
Y-intercept. |
|
SIZE_VIEW__SIZE
Size. |
|
UNIVARIATE_STATISTICS__AVERAGE
Average. |
|
UNIVARIATE_STATISTICS__COUNT
Count. |
|
UNIVARIATE_STATISTICS__STDDEV
Standard dev. |
|
UNIVARIATE_STATISTICS__STDDEVPA
Standard dev population. |
|
UNIVARIATE_STATISTICS__SUM
Sum. |
|
UNIVARIATE_STATISTICS__VARIANCE
Variance. |
|
WEIGHTED_AVERAGE__AVERAGE
Weighted average. |
Field Summary | |
---|---|
static java.lang.String[] |
MULTIDIM_OLAP__MEASURES
Measures in an OLAP cube. |
Method Summary | |
---|---|
java.lang.String |
getName()
Returns the field name of fields that contain data within a view's posted objects. |
static ViewFieldEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ViewFieldEnum[] |
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 ViewFieldEnum UNIVARIATE_STATISTICS__COUNT
public static final ViewFieldEnum UNIVARIATE_STATISTICS__SUM
public static final ViewFieldEnum UNIVARIATE_STATISTICS__AVERAGE
public static final ViewFieldEnum UNIVARIATE_STATISTICS__STDDEVPA
public static final ViewFieldEnum UNIVARIATE_STATISTICS__STDDEV
public static final ViewFieldEnum UNIVARIATE_STATISTICS__VARIANCE
public static final ViewFieldEnum WEIGHTED_AVERAGE__AVERAGE
public static final ViewFieldEnum CORRELATION__CORRELATION
public static final ViewFieldEnum REGRESSION__SLOPE
public static final ViewFieldEnum REGRESSION__YINTERCEPT
public static final ViewFieldEnum SIZE_VIEW__SIZE
public static final ViewFieldEnum MULTIDIM_OLAP__CUBE
Field Detail |
---|
public static final java.lang.String[] MULTIDIM_OLAP__MEASURES
Method Detail |
---|
public static final ViewFieldEnum[] values()
for(ViewFieldEnum c : ViewFieldEnum.values()) System.out.println(c);
public static ViewFieldEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic java.lang.String getName()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |