Uses of Class
cdc.util.xml.XmlUtils.EscapingPolicy
-
Packages that use XmlUtils.EscapingPolicy Package Description cdc.util.xml -
-
Uses of XmlUtils.EscapingPolicy in cdc.util.xml
Methods in cdc.util.xml that return XmlUtils.EscapingPolicy Modifier and Type Method Description static XmlUtils.EscapingPolicy
XmlUtils.EscapingPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static XmlUtils.EscapingPolicy[]
XmlUtils.EscapingPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in cdc.util.xml with parameters of type XmlUtils.EscapingPolicy Modifier and Type Method Description static void
XmlUtils. appendEscaped(StringBuilder builder, String s, XmlUtils.Context context, XmlUtils.EscapingPolicy policy)
static String
XmlUtils. escape(String s, XmlUtils.Context context, XmlUtils.EscapingPolicy policy)
Returns an escaped version of a string.static boolean
XmlUtils. needsEscape(String s, XmlUtils.Context context, XmlUtils.EscapingPolicy policy)
Returnstrue
is a string must be escaped.
-