public enum IncrementalActionGraphMode extends Enum<IncrementalActionGraphMode>
Note that only a stable experiment makes sense here, as incrementality requires at least two runs in a row with the feature enabled to show any effect.
Enum Constant and Description |
---|
DISABLED |
ENABLED |
EXPERIMENT |
Modifier and Type | Field and Description |
---|---|
static IncrementalActionGraphMode |
DEFAULT |
Modifier and Type | Method and Description |
---|---|
static IncrementalActionGraphMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncrementalActionGraphMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncrementalActionGraphMode ENABLED
public static final IncrementalActionGraphMode DISABLED
public static final IncrementalActionGraphMode EXPERIMENT
public static final IncrementalActionGraphMode DEFAULT
public static IncrementalActionGraphMode[] values()
for (IncrementalActionGraphMode c : IncrementalActionGraphMode.values()) System.out.println(c);
public static IncrementalActionGraphMode 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 null