public enum ModernBuildRuleBuildStrategy extends Enum<ModernBuildRuleBuildStrategy>
Strategies starting with DEBUG_ aren't particularly useful in production and are just meant for development.
| Enum Constant and Description |
|---|
DEBUG_PASSTHROUGH |
DEBUG_RECONSTRUCT |
HYBRID_LOCAL |
NONE |
REMOTE |
| Modifier and Type | Method and Description |
|---|---|
static ModernBuildRuleBuildStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModernBuildRuleBuildStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModernBuildRuleBuildStrategy NONE
public static final ModernBuildRuleBuildStrategy REMOTE
public static final ModernBuildRuleBuildStrategy HYBRID_LOCAL
public static final ModernBuildRuleBuildStrategy DEBUG_RECONSTRUCT
public static final ModernBuildRuleBuildStrategy DEBUG_PASSTHROUGH
public static ModernBuildRuleBuildStrategy[] values()
for (ModernBuildRuleBuildStrategy c : ModernBuildRuleBuildStrategy.values()) System.out.println(c);
public static ModernBuildRuleBuildStrategy 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