Type

@JsonClass(generateAdapter = false)
enum Type : Enum<MavenExtension.Type>

The extension application type. * CORE - A core extension, provided in the lib folder of the Maven installation. * MAVEN_EXT_CLASSPATH - A core extension provided via the -Dmaven.ext.class.path system property. * LIB_EXT - A core extension, provided in the lib/ext folder of the Maven installation. * PROJECT - A project extension, provided via a declaration in .mvn/extensions.xml in the Maven working directory. * POM - A build extension, provided via a declaration in the build section of the top level project pom.xml * UNKNOWN - An extension for which none of the other types match.

Values: core,mavenExtClasspath,libExt,project,pom,unknown

Entries

Link copied to clipboard
@Json(name = "CORE")
core
Link copied to clipboard
@Json(name = "MAVEN_EXT_CLASSPATH")
mavenExtClasspath
Link copied to clipboard
@Json(name = "LIB_EXT")
libExt
Link copied to clipboard
@Json(name = "PROJECT")
project
Link copied to clipboard
@Json(name = "POM")
pom
Link copied to clipboard
@Json(name = "UNKNOWN")
unknown

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.