public enum CustomPassExecutionTime extends java.lang.Enum<CustomPassExecutionTime>
| Enum Constant and Description |
|---|
AFTER_OPTIMIZATION_LOOP |
BEFORE_CHECKS |
BEFORE_OPTIMIZATION_LOOP |
BEFORE_OPTIMIZATIONS |
| Modifier and Type | Method and Description |
|---|---|
static CustomPassExecutionTime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomPassExecutionTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomPassExecutionTime BEFORE_CHECKS
public static final CustomPassExecutionTime BEFORE_OPTIMIZATIONS
public static final CustomPassExecutionTime BEFORE_OPTIMIZATION_LOOP
public static final CustomPassExecutionTime AFTER_OPTIMIZATION_LOOP
public static CustomPassExecutionTime[] values()
for (CustomPassExecutionTime c : CustomPassExecutionTime.values()) System.out.println(c);
public static CustomPassExecutionTime valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2009-2020 Google. All Rights Reserved.