|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<AggOp> net.sf.farrago.fennel.calc.AggOp
public enum AggOp
Enumeration of aggregate operations to be performed on aggregation buckets for windowed or streaming aggregation.
Enum Constant Summary | |
---|---|
Add
Update bucket in response to new row. |
|
Drop
Update bucket in response to row leaving window. |
|
Init
Initialize bucket to zero or null values |
|
InitAdd
Initialize bucket and update for new row. |
|
None
|
Method Summary | |
---|---|
static AggOp |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AggOp[] |
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 AggOp None
public static final AggOp Init
public static final AggOp Add
public static final AggOp Drop
public static final AggOp InitAdd
Method Detail |
---|
public static final AggOp[] values()
for(AggOp c : AggOp.values()) System.out.println(c);
public static AggOp valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |