Package org.apache.sysds.hops.codegen
Enum SpoofCompiler.CompilerType
- java.lang.Object
- 
- java.lang.Enum<SpoofCompiler.CompilerType>
- 
- org.apache.sysds.hops.codegen.SpoofCompiler.CompilerType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SpoofCompiler.CompilerType>
 - Enclosing class:
- SpoofCompiler
 
 public static enum SpoofCompiler.CompilerType extends Enum<SpoofCompiler.CompilerType> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SpoofCompiler.CompilerTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SpoofCompiler.CompilerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AUTOpublic static final SpoofCompiler.CompilerType AUTO 
 - 
JAVACpublic static final SpoofCompiler.CompilerType JAVAC 
 - 
JANINOpublic static final SpoofCompiler.CompilerType JANINO 
 - 
NVCCpublic static final SpoofCompiler.CompilerType NVCC 
 - 
NVRTCpublic static final SpoofCompiler.CompilerType NVRTC 
 
- 
 - 
Method Detail- 
valuespublic static SpoofCompiler.CompilerType[] 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 (SpoofCompiler.CompilerType c : SpoofCompiler.CompilerType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SpoofCompiler.CompilerType 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
 
 
- 
 
-