public enum InferredElementNamespace extends Enum<InferredElementNamespace>
HtmlTransformVisitor to
keep track of the current element namespace. This allows it to handle self-closing tags somewhat
correctly. Treat as package-private.| Modifier and Type | Method and Description |
|---|---|
static InferredElementNamespace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InferredElementNamespace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InferredElementNamespace SVG
public static final InferredElementNamespace XHTML
public static InferredElementNamespace[] values()
for (InferredElementNamespace c : InferredElementNamespace.values()) System.out.println(c);
public static InferredElementNamespace valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null