Package step.licensing.conf
Enum StepLicenseManagerConfiguration.FieldNames
- java.lang.Object
-
- java.lang.Enum<StepLicenseManagerConfiguration.FieldNames>
-
- step.licensing.conf.StepLicenseManagerConfiguration.FieldNames
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StepLicenseManagerConfiguration.FieldNames>
- Enclosing class:
- StepLicenseManagerConfiguration
public static enum StepLicenseManagerConfiguration.FieldNames extends java.lang.Enum<StepLicenseManagerConfiguration.FieldNames>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description stepActivationDays
stepLicenseConfigVersion
stepShutdownAllowedDays
stepUserCategories
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StepLicenseManagerConfiguration.FieldNames
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StepLicenseManagerConfiguration.FieldNames[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
stepLicenseConfigVersion
public static final StepLicenseManagerConfiguration.FieldNames stepLicenseConfigVersion
-
stepActivationDays
public static final StepLicenseManagerConfiguration.FieldNames stepActivationDays
-
stepShutdownAllowedDays
public static final StepLicenseManagerConfiguration.FieldNames stepShutdownAllowedDays
-
stepUserCategories
public static final StepLicenseManagerConfiguration.FieldNames stepUserCategories
-
-
Method Detail
-
values
public static StepLicenseManagerConfiguration.FieldNames[] 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 (StepLicenseManagerConfiguration.FieldNames c : StepLicenseManagerConfiguration.FieldNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepLicenseManagerConfiguration.FieldNames 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
-
-