public static enum StringTools.XmlPrintMode extends Enum<StringTools.XmlPrintMode>
| Enum Constant and Description |
|---|
CONTINUE_XML
Simply continue rule match output.
|
END_XML
End XML output by closing the root element.
|
NORMAL_XML
Normally output the rule matches by starting and
ending the XML output on every call.
|
START_XML
Start XML output by printing the preamble and the
start of the root element.
|
| Modifier and Type | Method and Description |
|---|---|
static StringTools.XmlPrintMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringTools.XmlPrintMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringTools.XmlPrintMode NORMAL_XML
public static final StringTools.XmlPrintMode START_XML
public static final StringTools.XmlPrintMode END_XML
public static final StringTools.XmlPrintMode CONTINUE_XML
public static StringTools.XmlPrintMode[] values()
for (StringTools.XmlPrintMode c : StringTools.XmlPrintMode.values()) System.out.println(c);
public static StringTools.XmlPrintMode 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 © 2005-2011 Daniel Naber