Enum BooleanProperty
- java.lang.Object
-
- java.lang.Enum<BooleanProperty>
-
- com.ss.android.ugc.bytex.common.configuration.BooleanProperty
-
- All Implemented Interfaces:
Property<java.lang.Boolean>,java.io.Serializable,java.lang.Comparable<BooleanProperty>
public enum BooleanProperty extends java.lang.Enum<BooleanProperty> implements Property<java.lang.Boolean>
Created by tanlehua on 2019/4/23.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleangetDefaultValue()java.lang.StringgetPropertyName()java.lang.Booleanparse(java.lang.Object value)java.lang.Booleanvalue()static BooleanPropertyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BooleanProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENABLE_DUPLICATE_CLASS_CHECK
public static final BooleanProperty ENABLE_DUPLICATE_CLASS_CHECK
-
ENABLE_HTML_LOG
public static final BooleanProperty ENABLE_HTML_LOG
-
ENABLE_RAM_CACHE
public static final BooleanProperty ENABLE_RAM_CACHE
-
ENABLE_RAM_NODES_CACHE
public static final BooleanProperty ENABLE_RAM_NODES_CACHE
-
ENABLE_RAM_CLASSES_CACHE
public static final BooleanProperty ENABLE_RAM_CLASSES_CACHE
-
ENABLE_ASYNC_SAVE_CACHE
public static final BooleanProperty ENABLE_ASYNC_SAVE_CACHE
-
ENABLE_VERIFY_PROGUARD_CONFIGURATION_CHANGED
public static final BooleanProperty ENABLE_VERIFY_PROGUARD_CONFIGURATION_CHANGED
-
CHECK_INCREMENTAL_INDEBUG
public static final BooleanProperty CHECK_INCREMENTAL_INDEBUG
-
ENABLE_SEPARATE_PROCESSING_NOTINCREMENTAL
public static final BooleanProperty ENABLE_SEPARATE_PROCESSING_NOTINCREMENTAL
-
USE_FIXED_TIMESTAMP
public static final BooleanProperty USE_FIXED_TIMESTAMP
-
FORBID_USE_LENIENT_MUTATION_DURING_GET_ARTIFACT
public static final BooleanProperty FORBID_USE_LENIENT_MUTATION_DURING_GET_ARTIFACT
-
ALLOW_REWRITE
public static final BooleanProperty ALLOW_REWRITE
-
CHECK_TRAVERSE_MODIFY
public static final BooleanProperty CHECK_TRAVERSE_MODIFY
-
CHECK_DEBUG_TRAVERSE_MODIFY
public static final BooleanProperty CHECK_DEBUG_TRAVERSE_MODIFY
-
ENABLE_BUILD_RECORDER
public static final BooleanProperty ENABLE_BUILD_RECORDER
-
ENABLE_GRADLE_DAEMON_IGNORE_CLASSLOADER_SINGLETON
public static final BooleanProperty ENABLE_GRADLE_DAEMON_IGNORE_CLASSLOADER_SINGLETON
-
-
Method Detail
-
values
public static BooleanProperty[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BooleanProperty c : BooleanProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BooleanProperty valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getPropertyName
public java.lang.String getPropertyName()
- Specified by:
getPropertyNamein interfaceProperty<java.lang.Boolean>
-
getDefaultValue
public java.lang.Boolean getDefaultValue()
- Specified by:
getDefaultValuein interfaceProperty<java.lang.Boolean>
-
-