Enum FEDInstruction.FEDType
- java.lang.Object
- 
- java.lang.Enum<FEDInstruction.FEDType>
- 
- org.apache.sysds.runtime.instructions.fed.FEDInstruction.FEDType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FEDInstruction.FEDType>
 - Enclosing class:
- FEDInstruction
 
 public static enum FEDInstruction.FEDType extends Enum<FEDInstruction.FEDType> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static FEDInstruction.FEDTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FEDInstruction.FEDType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AggregateBinarypublic static final FEDInstruction.FEDType AggregateBinary 
 - 
AggregateUnarypublic static final FEDInstruction.FEDType AggregateUnary 
 - 
AggregateTernarypublic static final FEDInstruction.FEDType AggregateTernary 
 - 
Appendpublic static final FEDInstruction.FEDType Append 
 - 
Binarypublic static final FEDInstruction.FEDType Binary 
 - 
Castpublic static final FEDInstruction.FEDType Cast 
 - 
CentralMomentpublic static final FEDInstruction.FEDType CentralMoment 
 - 
Checkpointpublic static final FEDInstruction.FEDType Checkpoint 
 - 
Covariancepublic static final FEDInstruction.FEDType Covariance 
 - 
CSVReblockpublic static final FEDInstruction.FEDType CSVReblock 
 - 
Ctablepublic static final FEDInstruction.FEDType Ctable 
 - 
CumulativeAggregatepublic static final FEDInstruction.FEDType CumulativeAggregate 
 - 
CumsumOffsetpublic static final FEDInstruction.FEDType CumsumOffset 
 - 
Initpublic static final FEDInstruction.FEDType Init 
 - 
MultiReturnParameterizedBuiltinpublic static final FEDInstruction.FEDType MultiReturnParameterizedBuiltin 
 - 
MMChainpublic static final FEDInstruction.FEDType MMChain 
 - 
MAPMMpublic static final FEDInstruction.FEDType MAPMM 
 - 
MatrixIndexingpublic static final FEDInstruction.FEDType MatrixIndexing 
 - 
Ternarypublic static final FEDInstruction.FEDType Ternary 
 - 
Tsmmpublic static final FEDInstruction.FEDType Tsmm 
 - 
ParameterizedBuiltinpublic static final FEDInstruction.FEDType ParameterizedBuiltin 
 - 
Quaternarypublic static final FEDInstruction.FEDType Quaternary 
 - 
QSortpublic static final FEDInstruction.FEDType QSort 
 - 
QPickpublic static final FEDInstruction.FEDType QPick 
 - 
Reblockpublic static final FEDInstruction.FEDType Reblock 
 - 
Reorgpublic static final FEDInstruction.FEDType Reorg 
 - 
Reshapepublic static final FEDInstruction.FEDType Reshape 
 - 
SpoofFusedpublic static final FEDInstruction.FEDType SpoofFused 
 - 
Unarypublic static final FEDInstruction.FEDType Unary 
 
- 
 - 
Method Detail- 
valuespublic static FEDInstruction.FEDType[] 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 (FEDInstruction.FEDType c : FEDInstruction.FEDType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FEDInstruction.FEDType 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
 
 
- 
 
-