Enum ConfigurationRefType_1
java.lang.Object
java.lang.Enum<ConfigurationRefType_1>
com.gradle.scan.eventmodel.gradle.configuration.ConfigurationRefType_1
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationRefType_1>,Constable
@PluginVersion(since="3.19")
public enum ConfigurationRefType_1
extends Enum<ConfigurationRefType_1>
Indicates the type of domain object that is the parent.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDenotes that parent is a build source build.Denotes that parent is a configuration resolution.Denotes that parent is settings evaluation.Denotes that parent is a lifecycle listener execution.Denotes that parent is a plugin application.Denotes that parent is a project evaluation.Denotes that parent is a script application.Denotes that parent is a script compilation.Denotes that parent is a task.Denotes that parent is a task graph calculation. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigurationRefType_1Returns the enum constant of this type with the specified name.static ConfigurationRefType_1[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BUILD_SRC_BUILD
Denotes that parent is a build source build.The ID value corresponds to
BuildSrcBuildStarted_1_0.id. -
CONFIGURATION_RESOLUTION
Denotes that parent is a configuration resolution.The ID value corresponds to
ConfigurationResolutionStarted_1_0.id. -
EVALUATE_SETTINGS
Denotes that parent is settings evaluation.The ID value corresponds to
EvaluateSettingsStarted_1_0.id. -
LIFECYCLE_LISTENER_EXECUTION
@PluginVersion(since="3.19") public static final ConfigurationRefType_1 LIFECYCLE_LISTENER_EXECUTIONDenotes that parent is a lifecycle listener execution.The ID value corresponds to
LifecycleListenerExecutionStarted_1_0.id. -
PLUGIN_APPLICATION
Denotes that parent is a plugin application.The ID value corresponds to
PluginApplicationStarted_1_0.id. -
PROJECT_EVALUATION
Denotes that parent is a project evaluation.The ID value corresponds to
ProjectEvaluationStarted_1_2.id. -
SCRIPT_APPLICATION
Denotes that parent is a script application.The ID value corresponds to
ScriptApplicationStarted_1_0.id. -
TASK_GRAPH_CALCULATION
Denotes that parent is a task graph calculation.The ID value corresponds to
TaskGraphCalculationStarted_1_1.id. -
TASK
Denotes that parent is a task.The ID value corresponds to
TaskStarted_1_0.id. -
SCRIPT_COMPILATION
Denotes that parent is a script compilation.The ID value corresponds to
ScriptCompilationStarted_1_0.id.
-
-
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
-