public enum RunPhase extends Enum<RunPhase>
| Enum Constant and Description |
|---|
AFTER_CACHING |
BEFORE_CACHING |
BOTH |
| Modifier and Type | Method and Description |
|---|---|
static RunPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunPhase BEFORE_CACHING
public static final RunPhase AFTER_CACHING
public static final RunPhase BOTH
public static RunPhase[] values()
for (RunPhase c : RunPhase.values()) System.out.println(c);
public static RunPhase 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 © 2017. All rights reserved.