Package com.javahollic.jira.emh.api
Enum IJEMHDataTypes.HtmlHeadingLevel
- java.lang.Object
-
- java.lang.Enum<IJEMHDataTypes.HtmlHeadingLevel>
-
- com.javahollic.jira.emh.api.IJEMHDataTypes.HtmlHeadingLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<IJEMHDataTypes.HtmlHeadingLevel>
- Enclosing interface:
- IJEMHDataTypes
public static enum IJEMHDataTypes.HtmlHeadingLevel extends Enum<IJEMHDataTypes.HtmlHeadingLevel>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IJEMHDataTypes.HtmlHeadingLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static IJEMHDataTypes.HtmlHeadingLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final IJEMHDataTypes.HtmlHeadingLevel none
-
h1
public static final IJEMHDataTypes.HtmlHeadingLevel h1
-
h2
public static final IJEMHDataTypes.HtmlHeadingLevel h2
-
h3
public static final IJEMHDataTypes.HtmlHeadingLevel h3
-
h4
public static final IJEMHDataTypes.HtmlHeadingLevel h4
-
h5
public static final IJEMHDataTypes.HtmlHeadingLevel h5
-
h6
public static final IJEMHDataTypes.HtmlHeadingLevel h6
-
-
Method Detail
-
values
public static IJEMHDataTypes.HtmlHeadingLevel[] 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 (IJEMHDataTypes.HtmlHeadingLevel c : IJEMHDataTypes.HtmlHeadingLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IJEMHDataTypes.HtmlHeadingLevel 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
-
-