public static enum Version.Significance extends Enum<Version.Significance>
| Enum Constant and Description |
|---|
BUILD |
MAJOR |
MINOR |
SNAPSHOT |
TEST_LEVEL |
TEST_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static Version.Significance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Version.Significance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Version.Significance MAJOR
public static final Version.Significance MINOR
public static final Version.Significance BUILD
public static final Version.Significance TEST_LEVEL
public static final Version.Significance TEST_VERSION
public static final Version.Significance SNAPSHOT
public static Version.Significance[] values()
for (Version.Significance c : Version.Significance.values()) System.out.println(c);
public static Version.Significance 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 © 2020 Open Foris. All rights reserved.