public enum ReduceOp extends java.lang.Enum<ReduceOp>
Reducer
, use the ColumnReduction
functionality.Enum Constant and Description |
---|
Count |
CountUnique |
Max |
Mean |
Min |
Prod |
Range |
Stdev |
Sum |
TakeFirst |
TakeLast |
Modifier and Type | Method and Description |
---|---|
static ReduceOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReduceOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReduceOp Prod
public static final ReduceOp Min
public static final ReduceOp Max
public static final ReduceOp Range
public static final ReduceOp Sum
public static final ReduceOp Mean
public static final ReduceOp Stdev
public static final ReduceOp Count
public static final ReduceOp CountUnique
public static final ReduceOp TakeFirst
public static final ReduceOp TakeLast
public static ReduceOp[] values()
for (ReduceOp c : ReduceOp.values()) System.out.println(c);
public static ReduceOp 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 namejava.lang.NullPointerException
- if the argument is null