Package org.apache.sysds.lops
Enum Ctable.OperationTypes
- java.lang.Object
- 
- java.lang.Enum<Ctable.OperationTypes>
- 
- org.apache.sysds.lops.Ctable.OperationTypes
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Ctable.OperationTypes>
 - Enclosing class:
- Ctable
 
 public static enum Ctable.OperationTypes extends Enum<Ctable.OperationTypes> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CTABLE_EXPAND_SCALAR_WEIGHTCTABLE_TRANSFORMCTABLE_TRANSFORM_HISTOGRAMCTABLE_TRANSFORM_SCALAR_WEIGHTCTABLE_TRANSFORM_WEIGHTED_HISTOGRAMINVALID
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasSecondInput()booleanhasThirdInput()static Ctable.OperationTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static Ctable.OperationTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CTABLE_TRANSFORMpublic static final Ctable.OperationTypes CTABLE_TRANSFORM 
 - 
CTABLE_TRANSFORM_SCALAR_WEIGHTpublic static final Ctable.OperationTypes CTABLE_TRANSFORM_SCALAR_WEIGHT 
 - 
CTABLE_TRANSFORM_HISTOGRAMpublic static final Ctable.OperationTypes CTABLE_TRANSFORM_HISTOGRAM 
 - 
CTABLE_TRANSFORM_WEIGHTED_HISTOGRAMpublic static final Ctable.OperationTypes CTABLE_TRANSFORM_WEIGHTED_HISTOGRAM 
 - 
CTABLE_EXPAND_SCALAR_WEIGHTpublic static final Ctable.OperationTypes CTABLE_EXPAND_SCALAR_WEIGHT 
 - 
INVALIDpublic static final Ctable.OperationTypes INVALID 
 
- 
 - 
Method Detail- 
valuespublic static Ctable.OperationTypes[] 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 (Ctable.OperationTypes c : Ctable.OperationTypes.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Ctable.OperationTypes 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
 
 - 
hasSecondInputpublic boolean hasSecondInput() 
 - 
hasThirdInputpublic boolean hasThirdInput() 
 
- 
 
-