public enum BuildPropertyValue extends java.lang.Enum<BuildPropertyValue>
| Enum Constant and Description |
|---|
MAIN
The
main branch or prefix. |
MASTER
The
master branch. |
RELEASE
The
release branch name prefix. |
SNAPSHOT
The
SNAPSHOT build number and/or version identifier. |
UNKNOWN
The
UNKNOWN release. |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
value
The encapsulated value.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static BuildPropertyValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuildPropertyValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildPropertyValue MAIN
main branch or prefix.public static final BuildPropertyValue MASTER
master branch.public static final BuildPropertyValue RELEASE
release branch name prefix.public static final BuildPropertyValue SNAPSHOT
SNAPSHOT build number and/or version identifier.public static final BuildPropertyValue UNKNOWN
UNKNOWN release.public static BuildPropertyValue[] values()
for (BuildPropertyValue c : BuildPropertyValue.values()) System.out.println(c);
public static BuildPropertyValue 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<BuildPropertyValue>