public enum FeatureAggregationType extends java.lang.Enum<FeatureAggregationType>
| Enum Constant and Description |
|---|
AVG |
ELEMENTWISE_AVG |
ELEMENTWISE_MAX |
ELEMENTWISE_MIN |
ELEMENTWISE_SUM |
FIRST |
MAX |
MIN |
SUM |
UNION |
| Modifier and Type | Method and Description |
|---|---|
static FeatureAggregationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureAggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureAggregationType UNION
public static final FeatureAggregationType SUM
public static final FeatureAggregationType AVG
public static final FeatureAggregationType MAX
public static final FeatureAggregationType MIN
public static final FeatureAggregationType ELEMENTWISE_MAX
public static final FeatureAggregationType ELEMENTWISE_MIN
public static final FeatureAggregationType ELEMENTWISE_AVG
public static final FeatureAggregationType ELEMENTWISE_SUM
public static final FeatureAggregationType FIRST
public static FeatureAggregationType[] values()
for (FeatureAggregationType c : FeatureAggregationType.values()) System.out.println(c);
public static FeatureAggregationType 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