@Deprecated public enum HoodOp extends java.lang.Enum<HoodOp> implements WithBytecode
| Enum Constant and Description |
|---|
ALL
Deprecated.
Logical product.
|
ANY
Deprecated.
Logical sum.
|
LOCAL
Deprecated.
Pick local value.
|
MAX
Deprecated.
Maximum.
|
MEAN
Deprecated.
Mean of values.
|
MIN
Deprecated.
Minimum.
|
SUM
Deprecated.
Sum of values.
|
UNION
Deprecated.
Union of values.
|
| Modifier and Type | Method and Description |
|---|---|
static HoodOp |
get(java.lang.String reducer)
Deprecated.
|
Bytecode |
getBytecode()
Deprecated.
|
java.lang.Object |
run(Field<java.lang.Object> target,
boolean inclusive)
Deprecated.
|
static HoodOp |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static HoodOp[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HoodOp ALL
public static final HoodOp ANY
public static final HoodOp LOCAL
public static final HoodOp MAX
public static final HoodOp MEAN
public static final HoodOp MIN
public static final HoodOp SUM
public static final HoodOp UNION
public static HoodOp[] values()
for (HoodOp c : HoodOp.values()) System.out.println(c);
public static HoodOp 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 nullpublic Bytecode getBytecode()
getBytecode in interface WithBytecodeBytecodepublic java.lang.Object run(Field<java.lang.Object> target, boolean inclusive)
target - the fieldinclusive - true if the local value should be considered