Package org.apache.sysds.hops.codegen
Enum SpoofFusedOp.SpoofOutputDimsType
- java.lang.Object
- 
- java.lang.Enum<SpoofFusedOp.SpoofOutputDimsType>
- 
- org.apache.sysds.hops.codegen.SpoofFusedOp.SpoofOutputDimsType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SpoofFusedOp.SpoofOutputDimsType>
 - Enclosing class:
- SpoofFusedOp
 
 public static enum SpoofFusedOp.SpoofOutputDimsType extends Enum<SpoofFusedOp.SpoofOutputDimsType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COLUMN_DIMS_COLSCOLUMN_DIMS_ROWSCOLUMN_RANK_DIMSCOLUMN_RANK_DIMS_TINPUT_DIMSINPUT_DIMS_CONST2MULTI_SCALARRANK_DIMS_COLSROW_DIMSROW_RANK_DIMSSCALARVECT_CONST2
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SpoofFusedOp.SpoofOutputDimsTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SpoofFusedOp.SpoofOutputDimsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INPUT_DIMSpublic static final SpoofFusedOp.SpoofOutputDimsType INPUT_DIMS 
 - 
INPUT_DIMS_CONST2public static final SpoofFusedOp.SpoofOutputDimsType INPUT_DIMS_CONST2 
 - 
ROW_DIMSpublic static final SpoofFusedOp.SpoofOutputDimsType ROW_DIMS 
 - 
COLUMN_DIMS_ROWSpublic static final SpoofFusedOp.SpoofOutputDimsType COLUMN_DIMS_ROWS 
 - 
COLUMN_DIMS_COLSpublic static final SpoofFusedOp.SpoofOutputDimsType COLUMN_DIMS_COLS 
 - 
RANK_DIMS_COLSpublic static final SpoofFusedOp.SpoofOutputDimsType RANK_DIMS_COLS 
 - 
SCALARpublic static final SpoofFusedOp.SpoofOutputDimsType SCALAR 
 - 
MULTI_SCALARpublic static final SpoofFusedOp.SpoofOutputDimsType MULTI_SCALAR 
 - 
ROW_RANK_DIMSpublic static final SpoofFusedOp.SpoofOutputDimsType ROW_RANK_DIMS 
 - 
COLUMN_RANK_DIMSpublic static final SpoofFusedOp.SpoofOutputDimsType COLUMN_RANK_DIMS 
 - 
COLUMN_RANK_DIMS_Tpublic static final SpoofFusedOp.SpoofOutputDimsType COLUMN_RANK_DIMS_T 
 - 
VECT_CONST2public static final SpoofFusedOp.SpoofOutputDimsType VECT_CONST2 
 
- 
 - 
Method Detail- 
valuespublic static SpoofFusedOp.SpoofOutputDimsType[] 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 (SpoofFusedOp.SpoofOutputDimsType c : SpoofFusedOp.SpoofOutputDimsType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SpoofFusedOp.SpoofOutputDimsType 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
 
 
- 
 
-