public enum Stat extends Enum<Stat>
Modifier and Type | Method and Description |
---|---|
static Stat |
valueOf(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.
|
public static final Stat OPT_T
public static final Stat OPT_OPTIMIZER
public static final Stat OPT_NUMTPLANS
public static final Stat OPT_NUMEPLANS
public static final Stat PARFOR_NUMTHREADS
public static final Stat PARFOR_TASKSIZE
public static final Stat PARFOR_TASKPARTITIONER
public static final Stat PARFOR_DATAPARTITIONER
public static final Stat PARFOR_EXECMODE
public static final Stat PARFOR_NUMTASKS
public static final Stat PARFOR_NUMITERS
public static final Stat PARFOR_JITCOMPILE
public static final Stat PARFOR_JVMGC_COUNT
public static final Stat PARFOR_JVMGC_TIME
public static final Stat PARFOR_INIT_DATA_T
public static final Stat PARFOR_INIT_PARWRK_T
public static final Stat PARFOR_INIT_TASKS_T
public static final Stat PARFOR_WAIT_EXEC_T
public static final Stat PARFOR_WAIT_RESULTS_T
public static final Stat PARWRK_NUMTASKS
public static final Stat PARWRK_NUMITERS
public static final Stat PARWRK_TASKSIZE
public static final Stat PARWRK_ITER_T
public static final Stat PARWRK_TASK_T
public static final Stat PARWRK_EXEC_T
public static Stat[] values()
for (Stat c : Stat.values()) System.out.println(c);
public static Stat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020 The Apache Software Foundation. All rights reserved.