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 Summary
Enum Constants Enum Constant Description CP_APPEND
MR_GAPPEND
MR_MAPPEND
MR_RAPPEND
SP_GAlignedAppend
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BinaryOp.AppendMethod
valueOf(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_APPEND
public static final BinaryOp.AppendMethod CP_APPEND
-
MR_MAPPEND
public static final BinaryOp.AppendMethod MR_MAPPEND
-
MR_RAPPEND
public static final BinaryOp.AppendMethod MR_RAPPEND
-
MR_GAPPEND
public static final BinaryOp.AppendMethod MR_GAPPEND
-
SP_GAlignedAppend
public static final BinaryOp.AppendMethod SP_GAlignedAppend
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-