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 SummaryEnum Constants Enum Constant Description EXACT_DYNAMIC_BUFFEXACT_STATIC_BUFFHEURISTIC
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SpoofCompiler.RegisterAllocvalueOf(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- 
HEURISTICpublic static final SpoofCompiler.RegisterAlloc HEURISTIC 
 - 
EXACT_DYNAMIC_BUFFpublic static final SpoofCompiler.RegisterAlloc EXACT_DYNAMIC_BUFF 
 - 
EXACT_STATIC_BUFFpublic static final SpoofCompiler.RegisterAlloc EXACT_STATIC_BUFF 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-