Enum Stat
- java.lang.Object
- 
- java.lang.Enum<Stat>
- 
- org.apache.sysds.runtime.controlprogram.parfor.stat.Stat
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Stat>
 
 public enum Stat extends Enum<Stat> Collection of all ParFor statistic types.
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static StatvalueOf(String name)Returns the enum constant of this type with the specified name.static Stat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
OPT_Tpublic static final Stat OPT_T 
 - 
OPT_OPTIMIZERpublic static final Stat OPT_OPTIMIZER 
 - 
OPT_NUMTPLANSpublic static final Stat OPT_NUMTPLANS 
 - 
OPT_NUMEPLANSpublic static final Stat OPT_NUMEPLANS 
 - 
PARFOR_NUMTHREADSpublic static final Stat PARFOR_NUMTHREADS 
 - 
PARFOR_TASKSIZEpublic static final Stat PARFOR_TASKSIZE 
 - 
PARFOR_TASKPARTITIONERpublic static final Stat PARFOR_TASKPARTITIONER 
 - 
PARFOR_DATAPARTITIONERpublic static final Stat PARFOR_DATAPARTITIONER 
 - 
PARFOR_EXECMODEpublic static final Stat PARFOR_EXECMODE 
 - 
PARFOR_NUMTASKSpublic static final Stat PARFOR_NUMTASKS 
 - 
PARFOR_NUMITERSpublic static final Stat PARFOR_NUMITERS 
 - 
PARFOR_JITCOMPILEpublic static final Stat PARFOR_JITCOMPILE 
 - 
PARFOR_JVMGC_COUNTpublic static final Stat PARFOR_JVMGC_COUNT 
 - 
PARFOR_JVMGC_TIMEpublic static final Stat PARFOR_JVMGC_TIME 
 - 
PARFOR_INIT_DATA_Tpublic static final Stat PARFOR_INIT_DATA_T 
 - 
PARFOR_INIT_PARWRK_Tpublic static final Stat PARFOR_INIT_PARWRK_T 
 - 
PARFOR_INIT_TASKS_Tpublic static final Stat PARFOR_INIT_TASKS_T 
 - 
PARFOR_WAIT_EXEC_Tpublic static final Stat PARFOR_WAIT_EXEC_T 
 - 
PARFOR_WAIT_RESULTS_Tpublic static final Stat PARFOR_WAIT_RESULTS_T 
 - 
PARWRK_NUMTASKSpublic static final Stat PARWRK_NUMTASKS 
 - 
PARWRK_NUMITERSpublic static final Stat PARWRK_NUMITERS 
 - 
PARWRK_TASKSIZEpublic static final Stat PARWRK_TASKSIZE 
 - 
PARWRK_ITER_Tpublic static final Stat PARWRK_ITER_T 
 - 
PARWRK_TASK_Tpublic static final Stat PARWRK_TASK_T 
 - 
PARWRK_EXEC_Tpublic static final Stat PARWRK_EXEC_T 
 
- 
 - 
Method Detail- 
valuespublic static Stat[] 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 (Stat c : Stat.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Stat 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
 
 
- 
 
-