Enum ConfigurationCacheCheckFingerprintStatus_1
java.lang.Object
java.lang.Enum<ConfigurationCacheCheckFingerprintStatus_1>
com.gradle.scan.eventmodel.gradle.configuration.ConfigurationCacheCheckFingerprintStatus_1
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationCacheCheckFingerprintStatus_1>,Constable
@PluginVersion(since="3.18")
public enum ConfigurationCacheCheckFingerprintStatus_1
extends Enum<ConfigurationCacheCheckFingerprintStatus_1>
Specifies the overall result of the configuration cache fingerprint check.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NOT_FOUND
@PluginVersion(since="3.18") public static final ConfigurationCacheCheckFingerprintStatus_1 NOT_FOUNDFingerprint file was not found. Most likely, there is no cached configuration for the given key. Configuration phase is going to be executed from scratch. -
VALID
The cached entry is valid and can be reused. -
PARTIAL
Configuration of some projects is invalidated. Configuration phase is going to be re-executed but the data from unaffected project will be reused. -
INVALID
The cached entry is invalid. Configuration phase is going to be re-executed from scratch. -
UNKNOWN
The configuration cache status is unknown.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-