public enum DeprecatedOptions extends java.lang.Enum<DeprecatedOptions> implements Option<java.lang.String>
If any of the deprecated options are set, a sync error will be raised.
| Enum Constant and Description |
|---|
ENABLE_IMPROVED_DEPENDENCY_RESOLUTION |
INCREMENTAL_JAVA_COMPILE |
THREAD_POOL_SIZE_OLD |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDefaultValue() |
java.lang.String |
getPropertyName() |
java.lang.String |
parse(java.lang.Object value) |
static DeprecatedOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeprecatedOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeprecatedOptions INCREMENTAL_JAVA_COMPILE
public static final DeprecatedOptions THREAD_POOL_SIZE_OLD
public static final DeprecatedOptions ENABLE_IMPROVED_DEPENDENCY_RESOLUTION
public static DeprecatedOptions[] values()
for (DeprecatedOptions c : DeprecatedOptions.values()) System.out.println(c);
public static DeprecatedOptions 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 null@NonNull public java.lang.String getPropertyName()
getPropertyName in interface Option<java.lang.String>@Nullable public java.lang.String getDefaultValue()
getDefaultValue in interface Option<java.lang.String>