Package com.xebialabs.license
Enum LicenseVersion4.Edition4
- java.lang.Object
-
- java.lang.Enum<LicenseVersion4.Edition4>
-
- com.xebialabs.license.LicenseVersion4.Edition4
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LicenseVersion4.Edition4>
- Enclosing class:
- LicenseVersion4
public static enum LicenseVersion4.Edition4 extends java.lang.Enum<LicenseVersion4.Edition4>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CommunityEssentialsPremiumProTrialUnregistered
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleancontains(java.lang.String editionName)static LicenseVersion4.Edition4valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LicenseVersion4.Edition4[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unregistered
public static final LicenseVersion4.Edition4 Unregistered
-
Community
public static final LicenseVersion4.Edition4 Community
-
Essentials
public static final LicenseVersion4.Edition4 Essentials
-
Pro
public static final LicenseVersion4.Edition4 Pro
-
Premium
public static final LicenseVersion4.Edition4 Premium
-
Trial
public static final LicenseVersion4.Edition4 Trial
-
-
Method Detail
-
values
public static LicenseVersion4.Edition4[] 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 (LicenseVersion4.Edition4 c : LicenseVersion4.Edition4.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LicenseVersion4.Edition4 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
-
contains
public static boolean contains(java.lang.String editionName)
-
-