org.ojalgo.function.aggregator
Enum CollectableAggregator
java.lang.Object
java.lang.Enum<CollectableAggregator>
org.ojalgo.function.aggregator.CollectableAggregator
- All Implemented Interfaces:
- Serializable, Comparable<CollectableAggregator>
public enum CollectableAggregator
- extends Enum<CollectableAggregator>
CARDINALITY
public static final CollectableAggregator CARDINALITY
values
public static CollectableAggregator[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (CollectableAggregator c : CollectableAggregator.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CollectableAggregator valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
getBigFunction
public final AggregatorFunction<BigDecimal> getBigFunction()
getComplexFunction
public final AggregatorFunction<ComplexNumber> getComplexFunction()
getFunction
public final <N extends Number> AggregatorFunction<N> getFunction(Class<?> aType)
getPrimitiveFunction
public final AggregatorFunction<Double> getPrimitiveFunction()