Uses of Enum
org.unbescape.xml.XmlEscapeLevel
Packages that use XmlEscapeLevel
-
Uses of XmlEscapeLevel in org.unbescape.xml
Subclasses with type arguments of type XmlEscapeLevel in org.unbescape.xmlModifier and TypeClassDescriptionenumLevels defined for XML escape/unescape operations:Methods in org.unbescape.xml that return XmlEscapeLevelModifier and TypeMethodDescriptionstatic XmlEscapeLevelXmlEscapeLevel.forLevel(int level) Utility method for obtaining an enum value from its corresponding int level value.static XmlEscapeLevelReturns the enum constant of this type with the specified name.static XmlEscapeLevel[]XmlEscapeLevel.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.unbescape.xml with parameters of type XmlEscapeLevelModifier and TypeMethodDescription(package private) static voidXmlEscapeUtil.escape(char[] text, int offset, int len, Writer writer, XmlEscapeSymbols symbols, XmlEscapeType escapeType, XmlEscapeLevel escapeLevel) (package private) static voidXmlEscapeUtil.escape(Reader reader, Writer writer, XmlEscapeSymbols symbols, XmlEscapeType escapeType, XmlEscapeLevel escapeLevel) (package private) static StringXmlEscapeUtil.escape(String text, XmlEscapeSymbols symbols, XmlEscapeType escapeType, XmlEscapeLevel escapeLevel) private static voidXmlEscape.escapeXml(char[] text, int offset, int len, Writer writer, XmlEscapeSymbols symbols, XmlEscapeType type, XmlEscapeLevel level) private static voidXmlEscape.escapeXml(Reader reader, Writer writer, XmlEscapeSymbols symbols, XmlEscapeType type, XmlEscapeLevel level) private static voidXmlEscape.escapeXml(String text, Writer writer, XmlEscapeSymbols symbols, XmlEscapeType type, XmlEscapeLevel level) private static StringXmlEscape.escapeXml(String text, XmlEscapeSymbols symbols, XmlEscapeType type, XmlEscapeLevel level) static voidXmlEscape.escapeXml10(char[] text, int offset, int len, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a char[] input.static voidXmlEscape.escapeXml10(Reader reader, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a Reader input, writing results to a Writer.static voidXmlEscape.escapeXml10(String text, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a String input, writing results to a Writer.static StringXmlEscape.escapeXml10(String text, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a String input.static voidXmlEscape.escapeXml10Attribute(char[] text, int offset, int len, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a char[] input meant to be an XML attribute value.static voidXmlEscape.escapeXml10Attribute(Reader reader, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.static voidXmlEscape.escapeXml10Attribute(String text, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a String input meant to be an XML attribute value, writing results to a Writer.static StringXmlEscape.escapeXml10Attribute(String text, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.0 escape operation on a String input meant to be an XML attribute value.static voidXmlEscape.escapeXml11(char[] text, int offset, int len, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a char[] input.static voidXmlEscape.escapeXml11(Reader reader, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a Reader input, writing results to a Writer.static voidXmlEscape.escapeXml11(String text, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a String input, writing results to a Writer.static StringXmlEscape.escapeXml11(String text, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a String input.static voidXmlEscape.escapeXml11Attribute(char[] text, int offset, int len, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a char[] input meant to be an XML attribute value.static voidXmlEscape.escapeXml11Attribute(Reader reader, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.static voidXmlEscape.escapeXml11Attribute(String text, Writer writer, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a String input meant to be an XML attribute value, writing results to a Writer.static StringXmlEscape.escapeXml11Attribute(String text, XmlEscapeType type, XmlEscapeLevel level) Perform a (configurable) XML 1.1 escape operation on a String input meant to be an XML attribute value.