public enum BuildProperty extends java.lang.Enum<BuildProperty>
| Enum Constant and Description |
|---|
ARTIFACT_ID
The Maven artifact identifier.
|
BRAMBOLT_RELEASE
The primary release identifier, often
chronological (
2020.02.02) or
semantic (2.2.2). |
BRAMBOLT_VERSION
The full version number, usually formed by combining the release
and the build number, normally similar to
2020.02.02-12345. |
BUILD_DATE
The build timestamp.
|
BUILD_NUMBER
The build number, normally similar to
12345. |
DEVELOPERS
The plugin developers.
|
INCEPTION_YEAR
The plugin inception year.
|
LICENSES
The applicable licenses.
|
PLUGIN_CLASS
The plugin implementation class.
|
PLUGIN_DISPLAY_NAME
The plugin display name.
|
PLUGIN_ID
The plugin identifier.
|
PLUGIN_LISTING
The listed plugins.
|
PLUGIN_TAGS
Tags to facilitate search in the Gradle plugin portal.
|
PLUGIN_WEBSITE
The plugin website.
|
RELEASE
The release identifier.
|
TRACKER_SYSTEM
The issue tracker system name.
|
TRACKER_URL
The issue tracker URL.
|
VCS_URL
The source control system URL.
|
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
name
The plugin name.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static BuildProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuildProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildProperty ARTIFACT_ID
public static final BuildProperty BRAMBOLT_RELEASE
2020.02.02) or
semantic (2.2.2).public static final BuildProperty BRAMBOLT_VERSION
2020.02.02-12345.public static final BuildProperty BUILD_DATE
public static final BuildProperty BUILD_NUMBER
12345.public static final BuildProperty DEVELOPERS
public static final BuildProperty INCEPTION_YEAR
public static final BuildProperty LICENSES
public static final BuildProperty PLUGIN_CLASS
public static final BuildProperty PLUGIN_DISPLAY_NAME
public static final BuildProperty PLUGIN_ID
public static final BuildProperty PLUGIN_LISTING
public static final BuildProperty PLUGIN_TAGS
public static final BuildProperty PLUGIN_WEBSITE
public static final BuildProperty RELEASE
public static final BuildProperty TRACKER_SYSTEM
public static final BuildProperty TRACKER_URL
public static final BuildProperty VCS_URL
public static BuildProperty[] values()
for (BuildProperty c : BuildProperty.values()) System.out.println(c);
public static BuildProperty valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<BuildProperty>