Enum CNodeTernary.TernaryType
- java.lang.Object
- 
- java.lang.Enum<CNodeTernary.TernaryType>
- 
- org.apache.sysds.hops.codegen.cplan.CNodeTernary.TernaryType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CNodeTernary.TernaryType>
 - Enclosing class:
- CNodeTernary
 
 public static enum CNodeTernary.TernaryType extends Enum<CNodeTernary.TernaryType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BIASADDBIASMULTIFELSELOOKUP_RC1LOOKUP_RVECT1MINUS_MULTPLUS_MULTREPLACEREPLACE_NAN
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleancontains(String value)booleanisVectorPrimitive()static CNodeTernary.TernaryTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CNodeTernary.TernaryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
PLUS_MULTpublic static final CNodeTernary.TernaryType PLUS_MULT 
 - 
MINUS_MULTpublic static final CNodeTernary.TernaryType MINUS_MULT 
 - 
BIASADDpublic static final CNodeTernary.TernaryType BIASADD 
 - 
BIASMULTpublic static final CNodeTernary.TernaryType BIASMULT 
 - 
REPLACEpublic static final CNodeTernary.TernaryType REPLACE 
 - 
REPLACE_NANpublic static final CNodeTernary.TernaryType REPLACE_NAN 
 - 
IFELSEpublic static final CNodeTernary.TernaryType IFELSE 
 - 
LOOKUP_RC1public static final CNodeTernary.TernaryType LOOKUP_RC1 
 - 
LOOKUP_RVECT1public static final CNodeTernary.TernaryType LOOKUP_RVECT1 
 
- 
 - 
Method Detail- 
valuespublic static CNodeTernary.TernaryType[] 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 (CNodeTernary.TernaryType c : CNodeTernary.TernaryType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CNodeTernary.TernaryType 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
 
 - 
containspublic static boolean contains(String value) 
 - 
isVectorPrimitivepublic boolean isVectorPrimitive() 
 
- 
 
-