Package org.apache.sysds.common
Enum Types.OpOp3
- java.lang.Object
- 
- java.lang.Enum<Types.OpOp3>
- 
- org.apache.sysds.common.Types.OpOp3
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.OpOp3>
 - Enclosing class:
- Types
 
 public static enum Types.OpOp3 extends Enum<Types.OpOp3> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COVCTABLEIFELSEINTERQUANTILEMAPMINUS_MULTMOMENTPLUS_MULTQUANTILE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static Types.OpOp3valueOf(String name)Returns the enum constant of this type with the specified name.static Types.OpOp3valueOfByOpcode(String opcode)static Types.OpOp3[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
QUANTILEpublic static final Types.OpOp3 QUANTILE 
 - 
INTERQUANTILEpublic static final Types.OpOp3 INTERQUANTILE 
 - 
CTABLEpublic static final Types.OpOp3 CTABLE 
 - 
MOMENTpublic static final Types.OpOp3 MOMENT 
 - 
COVpublic static final Types.OpOp3 COV 
 - 
PLUS_MULTpublic static final Types.OpOp3 PLUS_MULT 
 - 
MINUS_MULTpublic static final Types.OpOp3 MINUS_MULT 
 - 
IFELSEpublic static final Types.OpOp3 IFELSE 
 - 
MAPpublic static final Types.OpOp3 MAP 
 
- 
 - 
Method Detail- 
valuespublic static Types.OpOp3[] 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 (Types.OpOp3 c : Types.OpOp3.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.OpOp3 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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<Types.OpOp3>
 
 - 
valueOfByOpcodepublic static Types.OpOp3 valueOfByOpcode(String opcode) 
 
- 
 
-