Enum CMOperator.AggregateOperationTypes
- java.lang.Object
- 
- java.lang.Enum<CMOperator.AggregateOperationTypes>
- 
- org.apache.sysds.runtime.matrix.operators.CMOperator.AggregateOperationTypes
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CMOperator.AggregateOperationTypes>
 - Enclosing class:
- CMOperator
 
 public static enum CMOperator.AggregateOperationTypes extends Enum<CMOperator.AggregateOperationTypes> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CMOperator.AggregateOperationTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static CMOperator.AggregateOperationTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SUMpublic static final CMOperator.AggregateOperationTypes SUM 
 - 
COUNTpublic static final CMOperator.AggregateOperationTypes COUNT 
 - 
MEANpublic static final CMOperator.AggregateOperationTypes MEAN 
 - 
CM2public static final CMOperator.AggregateOperationTypes CM2 
 - 
CM3public static final CMOperator.AggregateOperationTypes CM3 
 - 
CM4public static final CMOperator.AggregateOperationTypes CM4 
 - 
MINpublic static final CMOperator.AggregateOperationTypes MIN 
 - 
MAXpublic static final CMOperator.AggregateOperationTypes MAX 
 - 
VARIANCEpublic static final CMOperator.AggregateOperationTypes VARIANCE 
 - 
INVALIDpublic static final CMOperator.AggregateOperationTypes INVALID 
 
- 
 - 
Method Detail- 
valuespublic static CMOperator.AggregateOperationTypes[] 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 (CMOperator.AggregateOperationTypes c : CMOperator.AggregateOperationTypes.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CMOperator.AggregateOperationTypes 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
 
 
- 
 
-