Package org.apache.sysds.hops
Enum FunctionOp.FunctionType
- java.lang.Object
- 
- java.lang.Enum<FunctionOp.FunctionType>
- 
- org.apache.sysds.hops.FunctionOp.FunctionType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FunctionOp.FunctionType>
 - Enclosing class:
- FunctionOp
 
 public static enum FunctionOp.FunctionType extends Enum<FunctionOp.FunctionType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DMLMULTIRETURN_BUILTINUNKNOWN
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static FunctionOp.FunctionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FunctionOp.FunctionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DMLpublic static final FunctionOp.FunctionType DML 
 - 
MULTIRETURN_BUILTINpublic static final FunctionOp.FunctionType MULTIRETURN_BUILTIN 
 - 
UNKNOWNpublic static final FunctionOp.FunctionType UNKNOWN 
 
- 
 - 
Method Detail- 
valuespublic static FunctionOp.FunctionType[] 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 (FunctionOp.FunctionType c : FunctionOp.FunctionType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FunctionOp.FunctionType 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
 
 
- 
 
-