Package org.apache.sysds.hops
Enum AggBinaryOp.MMultMethod
- java.lang.Object
- 
- java.lang.Enum<AggBinaryOp.MMultMethod>
- 
- org.apache.sysds.hops.AggBinaryOp.MMultMethod
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AggBinaryOp.MMultMethod>
 - Enclosing class:
- AggBinaryOp
 
 public static enum AggBinaryOp.MMultMethod extends Enum<AggBinaryOp.MMultMethod> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AggBinaryOp.MMultMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static AggBinaryOp.MMultMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CPMMpublic static final AggBinaryOp.MMultMethod CPMM 
 - 
RMMpublic static final AggBinaryOp.MMultMethod RMM 
 - 
MAPMM_Lpublic static final AggBinaryOp.MMultMethod MAPMM_L 
 - 
MAPMM_Rpublic static final AggBinaryOp.MMultMethod MAPMM_R 
 - 
MAPMM_CHAINpublic static final AggBinaryOp.MMultMethod MAPMM_CHAIN 
 - 
PMAPMMpublic static final AggBinaryOp.MMultMethod PMAPMM 
 - 
PMMpublic static final AggBinaryOp.MMultMethod PMM 
 - 
TSMMpublic static final AggBinaryOp.MMultMethod TSMM 
 - 
TSMM2public static final AggBinaryOp.MMultMethod TSMM2 
 - 
ZIPMMpublic static final AggBinaryOp.MMultMethod ZIPMM 
 - 
MMpublic static final AggBinaryOp.MMultMethod MM 
 
- 
 - 
Method Detail- 
valuespublic static AggBinaryOp.MMultMethod[] 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 (AggBinaryOp.MMultMethod c : AggBinaryOp.MMultMethod.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AggBinaryOp.MMultMethod 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
 
 
- 
 
-