public static enum XmlWriter.Type extends Enum<XmlWriter.Type>
| Enum Constant and Description |
|---|
CLOSING |
NO_CONTENT |
OPENING |
| Modifier and Type | Method and Description |
|---|---|
static XmlWriter.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlWriter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlWriter.Type OPENING
public static final XmlWriter.Type CLOSING
public static final XmlWriter.Type NO_CONTENT
public static XmlWriter.Type[] values()
for (XmlWriter.Type c : XmlWriter.Type.values()) System.out.println(c);
public static XmlWriter.Type 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 nullCopyright © 2021 McEvoy Software Ltd. All rights reserved.