Package org.apache.sysds.hops.fedplanner
Enum FTypes.FederatedPlanner
- java.lang.Object
- 
- java.lang.Enum<FTypes.FederatedPlanner>
- 
- org.apache.sysds.hops.fedplanner.FTypes.FederatedPlanner
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FTypes.FederatedPlanner>
 - Enclosing class:
- FTypes
 
 public static enum FTypes.FederatedPlanner extends Enum<FTypes.FederatedPlanner> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COMPILE_COST_BASEDCOMPILE_FED_ALLCOMPILE_FED_HEURISTICNONERUNTIME
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AFederatedPlannergetPlanner()booleanisCompiled()static booleanisCompiled(String planner)static FTypes.FederatedPlannervalueOf(String name)Returns the enum constant of this type with the specified name.static FTypes.FederatedPlanner[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final FTypes.FederatedPlanner NONE 
 - 
RUNTIMEpublic static final FTypes.FederatedPlanner RUNTIME 
 - 
COMPILE_FED_ALLpublic static final FTypes.FederatedPlanner COMPILE_FED_ALL 
 - 
COMPILE_FED_HEURISTICpublic static final FTypes.FederatedPlanner COMPILE_FED_HEURISTIC 
 - 
COMPILE_COST_BASEDpublic static final FTypes.FederatedPlanner COMPILE_COST_BASED 
 
- 
 - 
Method Detail- 
valuespublic static FTypes.FederatedPlanner[] 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 (FTypes.FederatedPlanner c : FTypes.FederatedPlanner.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FTypes.FederatedPlanner 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
 
 - 
getPlannerpublic AFederatedPlanner getPlanner() 
 - 
isCompiledpublic boolean isCompiled() 
 - 
isCompiledpublic static boolean isCompiled(String planner) 
 
- 
 
-