Package jodd.lagarto.dom.render
Enum LagartoHtmlRendererNodeVisitor.Case
- java.lang.Object
-
- java.lang.Enum<LagartoHtmlRendererNodeVisitor.Case>
-
- jodd.lagarto.dom.render.LagartoHtmlRendererNodeVisitor.Case
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LagartoHtmlRendererNodeVisitor.Case>
- Enclosing class:
- LagartoHtmlRendererNodeVisitor
public static enum LagartoHtmlRendererNodeVisitor.Case extends java.lang.Enum<LagartoHtmlRendererNodeVisitor.Case>
Enumeration of case options for output name.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LagartoHtmlRendererNodeVisitor.CasevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LagartoHtmlRendererNodeVisitor.Case[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final LagartoHtmlRendererNodeVisitor.Case DEFAULT
Default case, depends on parser case sensitivity.
-
RAW
public static final LagartoHtmlRendererNodeVisitor.Case RAW
Raw name, no modifications.
-
LOWERCASE
public static final LagartoHtmlRendererNodeVisitor.Case LOWERCASE
Lowercase name.
-
UPPERCASE
public static final LagartoHtmlRendererNodeVisitor.Case UPPERCASE
Uppercase name.
-
-
Method Detail
-
values
public static LagartoHtmlRendererNodeVisitor.Case[] 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 (LagartoHtmlRendererNodeVisitor.Case c : LagartoHtmlRendererNodeVisitor.Case.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LagartoHtmlRendererNodeVisitor.Case 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
-
-