Enum CollectionCallbackParticipantRefType_1
java.lang.Object
java.lang.Enum<CollectionCallbackParticipantRefType_1>
com.gradle.scan.eventmodel.gradle.collectioncallback.CollectionCallbackParticipantRefType_1
- All Implemented Interfaces:
Serializable,Comparable<CollectionCallbackParticipantRefType_1>,Constable
@PluginVersion(since="2.2")
public enum CollectionCallbackParticipantRefType_1
extends Enum<CollectionCallbackParticipantRefType_1>
The different types of entities that can be can collection callback participants.
- 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 ConstantDescriptionA collection callback.A lifecycle listener execution.A plugin.A build script or script plugin. -
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
-
SCRIPT
A build script or script plugin.ID values for this type refer to
ScriptApplicationStarted_1_0.id. -
PLUGIN
A plugin.ID values for this type refer to
PluginApplicationStarted_1_0.id. -
COLLECTION_CALLBACK
A collection callback.ID values for this type are the id of the owner of the owning
CollectionCallbackParticipantRefType_1entry. -
LIFECYCLE_LISTENER
A lifecycle listener execution.ID values for this type refer to
LifecycleListenerExecutionStarted_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
-