public static enum XmlUtil.Context extends java.lang.Enum<XmlUtil.Context>
Enum Constant | Description |
---|---|
ATTRIBUTE_DOUBLE_QUOTE |
|
ATTRIBUTE_SINGLE_QUOTE |
|
ELEMENT |
Modifier and Type | Method | Description |
---|---|---|
static XmlUtil.Context |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static XmlUtil.Context[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlUtil.Context ELEMENT
public static final XmlUtil.Context ATTRIBUTE_SINGLE_QUOTE
public static final XmlUtil.Context ATTRIBUTE_DOUBLE_QUOTE
public static XmlUtil.Context[] values()
for (XmlUtil.Context c : XmlUtil.Context.values()) System.out.println(c);
public static XmlUtil.Context 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 © 2018. All rights reserved.