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