Package org.apache.sysds.common
Enum Types.ExecType
- java.lang.Object
- 
- java.lang.Enum<Types.ExecType>
- 
- org.apache.sysds.common.Types.ExecType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.ExecType>
 - Enclosing class:
- Types
 
 public static enum Types.ExecType extends Enum<Types.ExecType> Execution type of individual operations.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Types.ExecTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Types.ExecType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CPpublic static final Types.ExecType CP 
 - 
CP_FILEpublic static final Types.ExecType CP_FILE 
 - 
SPARKpublic static final Types.ExecType SPARK 
 - 
GPUpublic static final Types.ExecType GPU 
 - 
FEDpublic static final Types.ExecType FED 
 - 
INVALIDpublic static final Types.ExecType INVALID 
 
- 
 - 
Method Detail- 
valuespublic static Types.ExecType[] 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.ExecType c : Types.ExecType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.ExecType 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
 
 
- 
 
-