Enum MvnExtensionApplicationType_1
java.lang.Object
java.lang.Enum<MvnExtensionApplicationType_1>
com.gradle.scan.eventmodel.maven.extensions.MvnExtensionApplicationType_1
- All Implemented Interfaces:
Serializable,Comparable<MvnExtensionApplicationType_1>,Constable
@MavenExtensionVersion(since="1.15")
public enum MvnExtensionApplicationType_1
extends Enum<MvnExtensionApplicationType_1>
Type of application for an extension.
- 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 core extension, provided in thelibfolder of the Maven installation.A core extension, provided in thelib/extfolder of the Maven installation.A core extension provided via the-Dmaven.ext.class.pathsystem property.A build extension, provided via a declaration in thebuildsection of the top level projectpom.xml.A project extension, provided via a declaration in.mvn/extensions.xmlon the Maven working directory.An extension for which none of the other types match. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static MvnExtensionApplicationType_1[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CORE
A core extension, provided in thelibfolder of the Maven installation. -
MAVEN_EXT_CLASSPATH
@MavenExtensionVersion(since="1.15") public static final MvnExtensionApplicationType_1 MAVEN_EXT_CLASSPATHA core extension provided via the-Dmaven.ext.class.pathsystem property. -
LIB_EXT
A core extension, provided in thelib/extfolder of the Maven installation. -
PROJECT
A project extension, provided via a declaration in.mvn/extensions.xmlon the Maven working directory. -
POM
A build extension, provided via a declaration in thebuildsection of the top level projectpom.xml. -
UNKNOWN
An extension for which none of the other types match.
-
-
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
-