Package org.apache.sysds.hops
Enum BinaryOp.MMBinaryMethod
- java.lang.Object
- 
- java.lang.Enum<BinaryOp.MMBinaryMethod>
- 
- org.apache.sysds.hops.BinaryOp.MMBinaryMethod
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<BinaryOp.MMBinaryMethod>
 - Enclosing class:
- BinaryOp
 
 public static enum BinaryOp.MMBinaryMethod extends Enum<BinaryOp.MMBinaryMethod> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CP_BINARYMR_BINARY_MMR_BINARY_OUTER_MMR_BINARY_OUTER_RMR_BINARY_RMR_BINARY_UAGG_CHAIN
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static BinaryOp.MMBinaryMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static BinaryOp.MMBinaryMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CP_BINARYpublic static final BinaryOp.MMBinaryMethod CP_BINARY 
 - 
MR_BINARY_Rpublic static final BinaryOp.MMBinaryMethod MR_BINARY_R 
 - 
MR_BINARY_Mpublic static final BinaryOp.MMBinaryMethod MR_BINARY_M 
 - 
MR_BINARY_OUTER_Mpublic static final BinaryOp.MMBinaryMethod MR_BINARY_OUTER_M 
 - 
MR_BINARY_OUTER_Rpublic static final BinaryOp.MMBinaryMethod MR_BINARY_OUTER_R 
 - 
MR_BINARY_UAGG_CHAINpublic static final BinaryOp.MMBinaryMethod MR_BINARY_UAGG_CHAIN 
 
- 
 - 
Method Detail- 
valuespublic static BinaryOp.MMBinaryMethod[] 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 (BinaryOp.MMBinaryMethod c : BinaryOp.MMBinaryMethod.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static BinaryOp.MMBinaryMethod 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
 
 
- 
 
-