public enum ReleaseState extends Enum<ReleaseState>
| Enum Constant and Description |
|---|
MILESTONE |
RELEASE |
RELEASECANDIDATE |
| Modifier and Type | Method and Description |
|---|---|
String |
getAcronym() |
static ReleaseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReleaseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReleaseState MILESTONE
public static final ReleaseState RELEASECANDIDATE
public static final ReleaseState RELEASE
public static ReleaseState[] values()
for (ReleaseState c : ReleaseState.values()) System.out.println(c);
public static ReleaseState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getAcronym()
Copyright © 2007–2019 Andreas W. Bartels. All rights reserved.