Package lumis.service.htmlinjector
Enum HtmlInjectionConfig.InjectPosition
- java.lang.Object
-
- java.lang.Enum<HtmlInjectionConfig.InjectPosition>
-
- lumis.service.htmlinjector.HtmlInjectionConfig.InjectPosition
-
- All Implemented Interfaces:
Serializable
,Comparable<HtmlInjectionConfig.InjectPosition>
- Enclosing class:
- HtmlInjectionConfig
public static enum HtmlInjectionConfig.InjectPosition extends Enum<HtmlInjectionConfig.InjectPosition>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BODY_END
BODY_START
HEAD_END
HEAD_START
SELECTOR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HtmlInjectionConfig.InjectPosition
valueOf(String name)
Returns the enum constant of this type with the specified name.static HtmlInjectionConfig.InjectPosition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEAD_START
public static final HtmlInjectionConfig.InjectPosition HEAD_START
-
HEAD_END
public static final HtmlInjectionConfig.InjectPosition HEAD_END
-
BODY_START
public static final HtmlInjectionConfig.InjectPosition BODY_START
-
BODY_END
public static final HtmlInjectionConfig.InjectPosition BODY_END
-
SELECTOR
public static final HtmlInjectionConfig.InjectPosition SELECTOR
-
-
Method Detail
-
values
public static HtmlInjectionConfig.InjectPosition[] 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 (HtmlInjectionConfig.InjectPosition c : HtmlInjectionConfig.InjectPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HtmlInjectionConfig.InjectPosition 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
-
-