Package step.licensing.conf.meta
Enum StepVersion
- java.lang.Object
-
- java.lang.Enum<StepVersion>
-
- step.licensing.conf.meta.StepVersion
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StepVersion>
public enum StepVersion extends java.lang.Enum<StepVersion>
-
-
Field Summary
Fields Modifier and Type Field Description StepLicenseConfigurationVersion
configurationVersion
static StepVersion
LATEST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.List<LicensingResources.StepEnterprise>
getLicensesRequiringNewerVersion(StepVersion selected)
static java.util.List<StepVersion>
getVersionsNewerThan(StepVersion selected)
java.util.List<LicensingResources.StepEnterprise>
licensesAddedInThisVersion()
static StepVersion
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StepVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
V22
public static final StepVersion V22
-
V23
public static final StepVersion V23
-
-
Field Detail
-
LATEST
public static final StepVersion LATEST
-
configurationVersion
public final StepLicenseConfigurationVersion configurationVersion
-
-
Method Detail
-
values
public static StepVersion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StepVersion c : StepVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepVersion valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getVersionsNewerThan
public static java.util.List<StepVersion> getVersionsNewerThan(StepVersion selected)
-
getLicensesRequiringNewerVersion
public static java.util.List<LicensingResources.StepEnterprise> getLicensesRequiringNewerVersion(StepVersion selected)
-
licensesAddedInThisVersion
public java.util.List<LicensingResources.StepEnterprise> licensesAddedInThisVersion()
-
-