public static enum LagartoHtmlRendererNodeVisitor.Case extends java.lang.Enum<LagartoHtmlRendererNodeVisitor.Case>
| Enum Constant and Description |
|---|
DEFAULT
Default case, depends on parser case sensitivity.
|
LOWERCASE
Lowercase name.
|
RAW
Raw name, no modifications.
|
UPPERCASE
Uppercase name.
|
| Modifier and Type | Method and Description |
|---|---|
static LagartoHtmlRendererNodeVisitor.Case |
valueOf(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.
|
public static final LagartoHtmlRendererNodeVisitor.Case DEFAULT
public static final LagartoHtmlRendererNodeVisitor.Case RAW
public static final LagartoHtmlRendererNodeVisitor.Case LOWERCASE
public static final LagartoHtmlRendererNodeVisitor.Case UPPERCASE
public static LagartoHtmlRendererNodeVisitor.Case[] values()
for (LagartoHtmlRendererNodeVisitor.Case c : LagartoHtmlRendererNodeVisitor.Case.values()) System.out.println(c);
public static LagartoHtmlRendererNodeVisitor.Case valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2003-present Jodd Team