Enum CPInstruction.CPType
- java.lang.Object
- 
- java.lang.Enum<CPInstruction.CPType>
- 
- org.apache.sysds.runtime.instructions.cp.CPInstruction.CPType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CPInstruction.CPType>
 - Enclosing class:
- CPInstruction
 
 public static enum CPInstruction.CPType extends Enum<CPInstruction.CPType> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CPInstruction.CPTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CPInstruction.CPType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AggregateUnarypublic static final CPInstruction.CPType AggregateUnary 
 - 
AggregateBinarypublic static final CPInstruction.CPType AggregateBinary 
 - 
AggregateTernarypublic static final CPInstruction.CPType AggregateTernary 
 - 
Unarypublic static final CPInstruction.CPType Unary 
 - 
Binarypublic static final CPInstruction.CPType Binary 
 - 
Ternarypublic static final CPInstruction.CPType Ternary 
 - 
Quaternarypublic static final CPInstruction.CPType Quaternary 
 - 
BuiltinNarypublic static final CPInstruction.CPType BuiltinNary 
 - 
Ctablepublic static final CPInstruction.CPType Ctable 
 - 
MultiReturnParameterizedBuiltinpublic static final CPInstruction.CPType MultiReturnParameterizedBuiltin 
 - 
ParameterizedBuiltinpublic static final CPInstruction.CPType ParameterizedBuiltin 
 - 
MultiReturnBuiltinpublic static final CPInstruction.CPType MultiReturnBuiltin 
 - 
Builtinpublic static final CPInstruction.CPType Builtin 
 - 
Reorgpublic static final CPInstruction.CPType Reorg 
 - 
Variablepublic static final CPInstruction.CPType Variable 
 - 
FCallpublic static final CPInstruction.CPType FCall 
 - 
Appendpublic static final CPInstruction.CPType Append 
 - 
Randpublic static final CPInstruction.CPType Rand 
 - 
QSortpublic static final CPInstruction.CPType QSort 
 - 
QPickpublic static final CPInstruction.CPType QPick 
 - 
Localpublic static final CPInstruction.CPType Local 
 - 
MatrixIndexingpublic static final CPInstruction.CPType MatrixIndexing 
 - 
MMTSJpublic static final CPInstruction.CPType MMTSJ 
 - 
PMMJpublic static final CPInstruction.CPType PMMJ 
 - 
MMChainpublic static final CPInstruction.CPType MMChain 
 - 
Reshapepublic static final CPInstruction.CPType Reshape 
 - 
Partitionpublic static final CPInstruction.CPType Partition 
 - 
Compressionpublic static final CPInstruction.CPType Compression 
 - 
DeCompressionpublic static final CPInstruction.CPType DeCompression 
 - 
SpoofFusedpublic static final CPInstruction.CPType SpoofFused 
 - 
StringInitpublic static final CPInstruction.CPType StringInit 
 - 
CentralMomentpublic static final CPInstruction.CPType CentralMoment 
 - 
Covariancepublic static final CPInstruction.CPType Covariance 
 - 
UaggOuterChainpublic static final CPInstruction.CPType UaggOuterChain 
 - 
Dnnpublic static final CPInstruction.CPType Dnn 
 - 
Sqlpublic static final CPInstruction.CPType Sql 
 - 
Prefetchpublic static final CPInstruction.CPType Prefetch 
 - 
Broadcastpublic static final CPInstruction.CPType Broadcast 
 
- 
 - 
Method Detail- 
valuespublic static CPInstruction.CPType[] 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 (CPInstruction.CPType c : CPInstruction.CPType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CPInstruction.CPType 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
 
 
- 
 
-