Enum Instruction.IType
- java.lang.Object
- 
- java.lang.Enum<Instruction.IType>
- 
- org.apache.sysds.runtime.instructions.Instruction.IType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Instruction.IType>
 - Enclosing class:
- Instruction
 
 public static enum Instruction.IType extends Enum<Instruction.IType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BREAKPOINTCONTROL_PROGRAMFEDERATEDGPUSPARK
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Instruction.ITypevalueOf(String name)Returns the enum constant of this type with the specified name.static Instruction.IType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CONTROL_PROGRAMpublic static final Instruction.IType CONTROL_PROGRAM 
 - 
BREAKPOINTpublic static final Instruction.IType BREAKPOINT 
 - 
SPARKpublic static final Instruction.IType SPARK 
 - 
GPUpublic static final Instruction.IType GPU 
 - 
FEDERATEDpublic static final Instruction.IType FEDERATED 
 
- 
 - 
Method Detail- 
valuespublic static Instruction.IType[] 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 (Instruction.IType c : Instruction.IType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Instruction.IType 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
 
 
- 
 
-