Package org.l2x6.cq.maven
Enum TemplateParams.ExtensionStatus
- java.lang.Object
-
- java.lang.Enum<TemplateParams.ExtensionStatus>
-
- org.l2x6.cq.maven.TemplateParams.ExtensionStatus
-
- All Implemented Interfaces:
Serializable,Comparable<TemplateParams.ExtensionStatus>
- Enclosing class:
- TemplateParams
public static enum TemplateParams.ExtensionStatus extends Enum<TemplateParams.ExtensionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description experimentalpreviewstable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TemplateParams.ExtensionStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TemplateParams.ExtensionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
preview
public static final TemplateParams.ExtensionStatus preview
-
stable
public static final TemplateParams.ExtensionStatus stable
-
experimental
public static final TemplateParams.ExtensionStatus experimental
-
-
Method Detail
-
values
public static TemplateParams.ExtensionStatus[] 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 (TemplateParams.ExtensionStatus c : TemplateParams.ExtensionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateParams.ExtensionStatus valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-