Package org.apache.sysds.hops.codegen
Enum SpoofCompiler.RegisterAlloc
- java.lang.Object
-
- java.lang.Enum<SpoofCompiler.RegisterAlloc>
-
- org.apache.sysds.hops.codegen.SpoofCompiler.RegisterAlloc
-
- All Implemented Interfaces:
Serializable
,Comparable<SpoofCompiler.RegisterAlloc>
- Enclosing class:
- SpoofCompiler
public static enum SpoofCompiler.RegisterAlloc extends Enum<SpoofCompiler.RegisterAlloc>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXACT_DYNAMIC_BUFF
EXACT_STATIC_BUFF
HEURISTIC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpoofCompiler.RegisterAlloc
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpoofCompiler.RegisterAlloc[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEURISTIC
public static final SpoofCompiler.RegisterAlloc HEURISTIC
-
EXACT_DYNAMIC_BUFF
public static final SpoofCompiler.RegisterAlloc EXACT_DYNAMIC_BUFF
-
EXACT_STATIC_BUFF
public static final SpoofCompiler.RegisterAlloc EXACT_STATIC_BUFF
-
-
Method Detail
-
values
public static SpoofCompiler.RegisterAlloc[] 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.RegisterAlloc c : SpoofCompiler.RegisterAlloc.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpoofCompiler.RegisterAlloc 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 nameNullPointerException
- if the argument is null
-
-