public enum Regression extends java.lang.Enum<Regression> implements JsonUnivariateAggregate
| Enum Constant and Description |
|---|
SLOPE
Calculate the slope of a single variable.
|
N| Modifier and Type | Method and Description |
|---|---|
static Regression |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Regression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final Regression SLOPE
double
with the key SLOPE in the aggregate result.
public static Regression[] values()
for (Regression c : Regression.values()) System.out.println(c);
public static Regression 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 nullCopyright IBM 2015,2016 - 2f6ad0e-20160307-0902