Package org.apache.sysds.lops
Enum Lop.Type
- java.lang.Object
- 
- java.lang.Enum<Lop.Type>
- 
- org.apache.sysds.lops.Lop.Type
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Lop.Type>
 - Enclosing class:
- Lop
 
 public static enum Lop.Type extends Enum<Lop.Type> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Lop.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Lop.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Datapublic static final Lop.Type Data 
 - 
DataGenpublic static final Lop.Type DataGen 
 - 
ReBlockpublic static final Lop.Type ReBlock 
 - 
CSVReBlockpublic static final Lop.Type CSVReBlock 
 - 
MatMultCPpublic static final Lop.Type MatMultCP 
 - 
MMCJpublic static final Lop.Type MMCJ 
 - 
MMRJpublic static final Lop.Type MMRJ 
 - 
MMTSJpublic static final Lop.Type MMTSJ 
 - 
PMMJpublic static final Lop.Type PMMJ 
 - 
MapMultpublic static final Lop.Type MapMult 
 - 
MapMultChainpublic static final Lop.Type MapMultChain 
 - 
UnaryCPpublic static final Lop.Type UnaryCP 
 - 
UNARYpublic static final Lop.Type UNARY 
 - 
BinaryCPpublic static final Lop.Type BinaryCP 
 - 
Binarypublic static final Lop.Type Binary 
 - 
Ternarypublic static final Lop.Type Ternary 
 - 
Narypublic static final Lop.Type Nary 
 - 
RightIndexpublic static final Lop.Type RightIndex 
 - 
LeftIndexpublic static final Lop.Type LeftIndex 
 - 
ZeroOutpublic static final Lop.Type ZeroOut 
 - 
Aggregatepublic static final Lop.Type Aggregate 
 - 
PartialAggregatepublic static final Lop.Type PartialAggregate 
 - 
BinUaggChainpublic static final Lop.Type BinUaggChain 
 - 
UaggOuterChainpublic static final Lop.Type UaggOuterChain 
 - 
TernaryAggregatepublic static final Lop.Type TernaryAggregate 
 - 
Groupingpublic static final Lop.Type Grouping 
 - 
Appendpublic static final Lop.Type Append 
 - 
CombineUnarypublic static final Lop.Type CombineUnary 
 - 
CombineBinarypublic static final Lop.Type CombineBinary 
 - 
CombineTernarypublic static final Lop.Type CombineTernary 
 - 
CentralMomentpublic static final Lop.Type CentralMoment 
 - 
CoVariancepublic static final Lop.Type CoVariance 
 - 
GroupedAggpublic static final Lop.Type GroupedAgg 
 - 
GroupedAggMpublic static final Lop.Type GroupedAggM 
 - 
Transformpublic static final Lop.Type Transform 
 - 
DataPartitionpublic static final Lop.Type DataPartition 
 - 
RepMatpublic static final Lop.Type RepMat 
 - 
ParameterizedBuiltinpublic static final Lop.Type ParameterizedBuiltin 
 - 
FunctionCallCPpublic static final Lop.Type FunctionCallCP 
 - 
FunctionCallCPSinglepublic static final Lop.Type FunctionCallCPSingle 
 - 
CumulativePartialAggregatepublic static final Lop.Type CumulativePartialAggregate 
 - 
CumulativeSplitAggregatepublic static final Lop.Type CumulativeSplitAggregate 
 - 
CumulativeOffsetBinarypublic static final Lop.Type CumulativeOffsetBinary 
 - 
WeightedSquaredLosspublic static final Lop.Type WeightedSquaredLoss 
 - 
WeightedSigmoidpublic static final Lop.Type WeightedSigmoid 
 - 
WeightedDivMMpublic static final Lop.Type WeightedDivMM 
 - 
WeightedCeMMpublic static final Lop.Type WeightedCeMM 
 - 
WeightedUMMpublic static final Lop.Type WeightedUMM 
 - 
SortKeyspublic static final Lop.Type SortKeys 
 - 
PickValuespublic static final Lop.Type PickValues 
 - 
Ctablepublic static final Lop.Type Ctable 
 - 
Checkpointpublic static final Lop.Type Checkpoint 
 - 
PlusMultpublic static final Lop.Type PlusMult 
 - 
MinusMultpublic static final Lop.Type MinusMult 
 - 
SpoofFusedpublic static final Lop.Type SpoofFused 
 - 
Sqlpublic static final Lop.Type Sql 
 - 
Federatedpublic static final Lop.Type Federated 
 
- 
 - 
Method Detail- 
valuespublic static Lop.Type[] 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 (Lop.Type c : Lop.Type.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Lop.Type 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
 
 
- 
 
-