Package org.apache.sysds.common
Enum Types.ParamBuiltinOp
- java.lang.Object
- 
- java.lang.Enum<Types.ParamBuiltinOp>
- 
- org.apache.sysds.common.Types.ParamBuiltinOp
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.ParamBuiltinOp>
 - Enclosing class:
- Types
 
 public static enum Types.ParamBuiltinOp extends Enum<Types.ParamBuiltinOp> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AUTODIFFCDFGROUPEDAGGINVALIDINVCDFLISTLOWER_TRIPARAMSERVREPLACEREXPANDRMEMPTYTOKENIZETOSTRINGTRANSFORMAPPLYTRANSFORMCOLMAPTRANSFORMDECODETRANSFORMMETAUPPER_TRI
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Types.ParamBuiltinOpvalueOf(String name)Returns the enum constant of this type with the specified name.static Types.ParamBuiltinOp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AUTODIFFpublic static final Types.ParamBuiltinOp AUTODIFF 
 - 
INVALIDpublic static final Types.ParamBuiltinOp INVALID 
 - 
CDFpublic static final Types.ParamBuiltinOp CDF 
 - 
INVCDFpublic static final Types.ParamBuiltinOp INVCDF 
 - 
GROUPEDAGGpublic static final Types.ParamBuiltinOp GROUPEDAGG 
 - 
RMEMPTYpublic static final Types.ParamBuiltinOp RMEMPTY 
 - 
REPLACEpublic static final Types.ParamBuiltinOp REPLACE 
 - 
REXPANDpublic static final Types.ParamBuiltinOp REXPAND 
 - 
LOWER_TRIpublic static final Types.ParamBuiltinOp LOWER_TRI 
 - 
UPPER_TRIpublic static final Types.ParamBuiltinOp UPPER_TRI 
 - 
TRANSFORMAPPLYpublic static final Types.ParamBuiltinOp TRANSFORMAPPLY 
 - 
TRANSFORMDECODEpublic static final Types.ParamBuiltinOp TRANSFORMDECODE 
 - 
TRANSFORMCOLMAPpublic static final Types.ParamBuiltinOp TRANSFORMCOLMAP 
 - 
TRANSFORMMETApublic static final Types.ParamBuiltinOp TRANSFORMMETA 
 - 
TOKENIZEpublic static final Types.ParamBuiltinOp TOKENIZE 
 - 
TOSTRINGpublic static final Types.ParamBuiltinOp TOSTRING 
 - 
LISTpublic static final Types.ParamBuiltinOp LIST 
 - 
PARAMSERVpublic static final Types.ParamBuiltinOp PARAMSERV 
 
- 
 - 
Method Detail- 
valuespublic static Types.ParamBuiltinOp[] 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.ParamBuiltinOp c : Types.ParamBuiltinOp.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.ParamBuiltinOp 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
 
 
- 
 
-