Package org.apache.sysds.hops.codegen
Enum SpoofCompiler.PlanCachePolicy
- java.lang.Object
- 
- java.lang.Enum<SpoofCompiler.PlanCachePolicy>
- 
- org.apache.sysds.hops.codegen.SpoofCompiler.PlanCachePolicy
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SpoofCompiler.PlanCachePolicy>
 - Enclosing class:
- SpoofCompiler
 
 public static enum SpoofCompiler.PlanCachePolicy extends Enum<SpoofCompiler.PlanCachePolicy> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SpoofCompiler.PlanCachePolicyget(boolean planCache, boolean compileLiterals)static SpoofCompiler.PlanCachePolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static SpoofCompiler.PlanCachePolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CONSTANTpublic static final SpoofCompiler.PlanCachePolicy CONSTANT 
 - 
CSLHpublic static final SpoofCompiler.PlanCachePolicy CSLH 
 - 
NONEpublic static final SpoofCompiler.PlanCachePolicy NONE 
 
- 
 - 
Method Detail- 
valuespublic static SpoofCompiler.PlanCachePolicy[] 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.PlanCachePolicy c : SpoofCompiler.PlanCachePolicy.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SpoofCompiler.PlanCachePolicy 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
 
 - 
getpublic static SpoofCompiler.PlanCachePolicy get(boolean planCache, boolean compileLiterals) 
 
- 
 
-