public enum Reduction extends java.lang.Enum<Reduction>
The INDEX reduction is equivalent to the SQL GROUP BY CLAUSE, when combined with other Reductions it requests that multiple results should be returned, with reductions only happending across sets of records where the INDEX property is the same.
AVG is a mean value except when doing overlap mapping when it becomes a time average
| Modifier and Type | Method and Description |
|---|---|
uk.ac.ed.epcc.webapp.content.Operator |
operator()
get a
Operator suitable for combing partial results. |
static Reduction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reduction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reduction SUM
public static final Reduction AVG
public static final Reduction MIN
public static final Reduction MAX
public static final Reduction INDEX
public static Reduction[] values()
for (Reduction c : Reduction.values()) System.out.println(c);
public static Reduction valueOf(java.lang.String name)
java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullname - the name of the enum constant to be returned.public uk.ac.ed.epcc.webapp.content.Operator operator()
Operator suitable for combing partial results.Operator