Package org.apache.sysds.hops
Enum BinaryOp.AppendMethod
- java.lang.Object
- 
- java.lang.Enum<BinaryOp.AppendMethod>
- 
- org.apache.sysds.hops.BinaryOp.AppendMethod
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<BinaryOp.AppendMethod>
 - Enclosing class:
- BinaryOp
 
 public static enum BinaryOp.AppendMethod extends Enum<BinaryOp.AppendMethod> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CP_APPENDMR_GAPPENDMR_MAPPENDMR_RAPPENDSP_GAlignedAppend
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static BinaryOp.AppendMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static BinaryOp.AppendMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CP_APPENDpublic static final BinaryOp.AppendMethod CP_APPEND 
 - 
MR_MAPPENDpublic static final BinaryOp.AppendMethod MR_MAPPEND 
 - 
MR_RAPPENDpublic static final BinaryOp.AppendMethod MR_RAPPEND 
 - 
MR_GAPPENDpublic static final BinaryOp.AppendMethod MR_GAPPEND 
 - 
SP_GAlignedAppendpublic static final BinaryOp.AppendMethod SP_GAlignedAppend 
 
- 
 - 
Method Detail- 
valuespublic static BinaryOp.AppendMethod[] 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.AppendMethod c : BinaryOp.AppendMethod.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static BinaryOp.AppendMethod 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
 
 
- 
 
-