public enum BuildProperty extends java.lang.Enum<BuildProperty>
| Enum Constant and Description |
|---|
ARTIFACT_ID |
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 |
INCEPTION_YEAR |
LICENSES |
PLUGIN_CLASS |
PLUGIN_DISPLAY_NAME |
PLUGIN_ID |
PLUGIN_TAGS |
PLUGIN_WEBSITE |
RELEASE |
VCS_URL |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
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_TAGS
public static final BuildProperty PLUGIN_WEBSITE
public static final BuildProperty RELEASE
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>