public static enum Version.VersionPart extends Enum<Version.VersionPart>
| Modifier and Type | Method and Description |
|---|---|
static Version.VersionPart |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Version.VersionPart[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Version.VersionPart MAJOR
public static final Version.VersionPart MINOR
public static final Version.VersionPart RELEASE
public static final Version.VersionPart BUILD
public static Version.VersionPart[] values()
for (Version.VersionPart c : Version.VersionPart.values()) System.out.println(c);
public static Version.VersionPart 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 nullCopyright © 2017 Regenstrief Center for Biomedical Informatics. All rights reserved.