Enum 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 Detail

      • ENABLE_DUPLICATE_CLASS_CHECK

        public static final BooleanProperty ENABLE_DUPLICATE_CLASS_CHECK
      • 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
      • 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 name
        java.lang.NullPointerException - if the argument is null
      • getPropertyName

        public java.lang.String getPropertyName()
        Specified by:
        getPropertyName in interface Property<java.lang.Boolean>
      • getDefaultValue

        public java.lang.Boolean getDefaultValue()
        Specified by:
        getDefaultValue in interface Property<java.lang.Boolean>
      • value

        public java.lang.Boolean value()
        Specified by:
        value in interface Property<java.lang.Boolean>
      • parse

        public java.lang.Boolean parse​(java.lang.Object value)
        Specified by:
        parse in interface Property<java.lang.Boolean>