Enum SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod
- java.lang.Object
-
- java.lang.Enum<SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod>
-
- ubic.gemma.core.analysis.singleCell.aggregate.SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod>
- Enclosing class:
- SingleCellDataVectorAggregatorUtils
public static enum SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod extends Enum<SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNT
COUNT_FAST
MAX
MEAN
MEDIAN
MIN
STANDARD_DEVIATION
SUM
Simply add up the unscaled values.VARIANCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUM
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod SUM
Simply add up the unscaled values.
-
MEAN
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod MEAN
-
MEDIAN
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod MEDIAN
-
VARIANCE
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod VARIANCE
-
STANDARD_DEVIATION
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod STANDARD_DEVIATION
-
MAX
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod MAX
-
MIN
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod MIN
-
COUNT
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod COUNT
-
COUNT_FAST
public static final SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod COUNT_FAST
-
-
Method Detail
-
values
public static SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod[] 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 (SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod c : SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod 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 nameNullPointerException
- if the argument is null
-
-