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 Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Lop.Type
valueOf(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
-
Data
public static final Lop.Type Data
-
DataGen
public static final Lop.Type DataGen
-
ReBlock
public static final Lop.Type ReBlock
-
CSVReBlock
public static final Lop.Type CSVReBlock
-
MatMultCP
public static final Lop.Type MatMultCP
-
MMCJ
public static final Lop.Type MMCJ
-
MMRJ
public static final Lop.Type MMRJ
-
MMTSJ
public static final Lop.Type MMTSJ
-
PMMJ
public static final Lop.Type PMMJ
-
MapMult
public static final Lop.Type MapMult
-
MapMultChain
public static final Lop.Type MapMultChain
-
UnaryCP
public static final Lop.Type UnaryCP
-
UNARY
public static final Lop.Type UNARY
-
BinaryCP
public static final Lop.Type BinaryCP
-
Binary
public static final Lop.Type Binary
-
Ternary
public static final Lop.Type Ternary
-
Nary
public static final Lop.Type Nary
-
RightIndex
public static final Lop.Type RightIndex
-
LeftIndex
public static final Lop.Type LeftIndex
-
ZeroOut
public static final Lop.Type ZeroOut
-
Aggregate
public static final Lop.Type Aggregate
-
PartialAggregate
public static final Lop.Type PartialAggregate
-
BinUaggChain
public static final Lop.Type BinUaggChain
-
UaggOuterChain
public static final Lop.Type UaggOuterChain
-
TernaryAggregate
public static final Lop.Type TernaryAggregate
-
Grouping
public static final Lop.Type Grouping
-
Append
public static final Lop.Type Append
-
CombineUnary
public static final Lop.Type CombineUnary
-
CombineBinary
public static final Lop.Type CombineBinary
-
CombineTernary
public static final Lop.Type CombineTernary
-
CentralMoment
public static final Lop.Type CentralMoment
-
CoVariance
public static final Lop.Type CoVariance
-
GroupedAgg
public static final Lop.Type GroupedAgg
-
GroupedAggM
public static final Lop.Type GroupedAggM
-
Transform
public static final Lop.Type Transform
-
DataPartition
public static final Lop.Type DataPartition
-
RepMat
public static final Lop.Type RepMat
-
ParameterizedBuiltin
public static final Lop.Type ParameterizedBuiltin
-
FunctionCallCP
public static final Lop.Type FunctionCallCP
-
FunctionCallCPSingle
public static final Lop.Type FunctionCallCPSingle
-
CumulativePartialAggregate
public static final Lop.Type CumulativePartialAggregate
-
CumulativeSplitAggregate
public static final Lop.Type CumulativeSplitAggregate
-
CumulativeOffsetBinary
public static final Lop.Type CumulativeOffsetBinary
-
WeightedSquaredLoss
public static final Lop.Type WeightedSquaredLoss
-
WeightedSigmoid
public static final Lop.Type WeightedSigmoid
-
WeightedDivMM
public static final Lop.Type WeightedDivMM
-
WeightedCeMM
public static final Lop.Type WeightedCeMM
-
WeightedUMM
public static final Lop.Type WeightedUMM
-
SortKeys
public static final Lop.Type SortKeys
-
PickValues
public static final Lop.Type PickValues
-
Ctable
public static final Lop.Type Ctable
-
Checkpoint
public static final Lop.Type Checkpoint
-
PlusMult
public static final Lop.Type PlusMult
-
MinusMult
public static final Lop.Type MinusMult
-
SpoofFused
public static final Lop.Type SpoofFused
-
Sql
public static final Lop.Type Sql
-
Federated
public static final Lop.Type Federated
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-