public static enum OptimizerUtils.OptimizationLevel extends Enum<OptimizerUtils.OptimizationLevel>
| Enum Constant and Description | 
|---|
| O0_LOCAL_STATIC | 
| O1_LOCAL_MEMORY_MIN | 
| O2_LOCAL_MEMORY_DEFAULT | 
| O3_LOCAL_RESOURCE_TIME_MEMORY | 
| O4_GLOBAL_TIME_MEMORY | 
| O5_DEBUG_MODE | 
| Modifier and Type | Method and Description | 
|---|---|
| static OptimizerUtils.OptimizationLevel | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static OptimizerUtils.OptimizationLevel[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final OptimizerUtils.OptimizationLevel O0_LOCAL_STATIC
public static final OptimizerUtils.OptimizationLevel O1_LOCAL_MEMORY_MIN
public static final OptimizerUtils.OptimizationLevel O2_LOCAL_MEMORY_DEFAULT
public static final OptimizerUtils.OptimizationLevel O3_LOCAL_RESOURCE_TIME_MEMORY
public static final OptimizerUtils.OptimizationLevel O4_GLOBAL_TIME_MEMORY
public static final OptimizerUtils.OptimizationLevel O5_DEBUG_MODE
public static OptimizerUtils.OptimizationLevel[] values()
for (OptimizerUtils.OptimizationLevel c : OptimizerUtils.OptimizationLevel.values()) System.out.println(c);
public static OptimizerUtils.OptimizationLevel 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.