B C D E F G H I J L O P S U V X 

B

BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA - org.unbescape.css.CssIdentifierEscapeType
Use backslash escapes if possible, default to \FF* variable-length hexadecimal escapes.
BACKSLASH_ESCAPES_DEFAULT_TO_COMPACT_HEXA - org.unbescape.css.CssStringEscapeType
Use backslash escapes if possible, default to \FF* variable-length hexadecimal escapes.
BACKSLASH_ESCAPES_DEFAULT_TO_SIX_DIGIT_HEXA - org.unbescape.css.CssIdentifierEscapeType
Use backslash escapes if possible, default to \FFFFFF 6-digit hexadecimal escapes.
BACKSLASH_ESCAPES_DEFAULT_TO_SIX_DIGIT_HEXA - org.unbescape.css.CssStringEscapeType
Use backslash escapes if possible, default to \FFFFFF 6-digit hexadecimal escapes.
BUILD_TIMESTAMP - Static variable in class org.unbescape.Unbescape
 

C

CHARACTER_ENTITY_REFERENCES_DEFAULT_TO_DECIMAL - org.unbescape.xml.XmlEscapeType
Use Character Entity References if possible, default to Decimal Character References.
CHARACTER_ENTITY_REFERENCES_DEFAULT_TO_HEXA - org.unbescape.xml.XmlEscapeType
Use Character Entity Referencess if possible, default to Hexadecimal Character References.
COMPACT_HEXA - org.unbescape.css.CssIdentifierEscapeType
Always use \FF* variable-length hexadecimal escapes.
COMPACT_HEXA - org.unbescape.css.CssStringEscapeType
Always use \FF* variable-length hexadecimal escapes.
CssEscape - Class in org.unbescape.css
Utility class for performing CSS escape/unescape operations.
CssIdentifierEscapeLevel - Enum in org.unbescape.css
Levels defined for escape/unescape operations of CSS identifiers:
CssIdentifierEscapeType - Enum in org.unbescape.css
Types of escape operations to be performed on CSS identifiers:
CssStringEscapeLevel - Enum in org.unbescape.css
Levels defined for escape/unescape operations of CSS strings:
CssStringEscapeType - Enum in org.unbescape.css
Types of escape operations to be performed on CSS strings:
CsvEscape - Class in org.unbescape.csv
Utility class for performing CSV escape/unescape operations.

D

DECIMAL_REFERENCES - org.unbescape.html.HtmlEscapeType
Always use Decimal Character References (no NCRs will be used).
DECIMAL_REFERENCES - org.unbescape.xml.XmlEscapeType
Always use Decimal Character References (no CERs will be used).
DEFAULT_ENCODING - Static variable in class org.unbescape.uri.UriEscape
The default encoding for URI escaping/unescaping: UTF-8.

E

escapeCssIdentifier(char[], int, int, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapeCssIdentifier(char[], int, int, Writer, CssIdentifierEscapeType, CssIdentifierEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS Identifier escape operation on a char[] input.
escapeCssIdentifier(Reader, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeCssIdentifier(Reader, Writer, CssIdentifierEscapeType, CssIdentifierEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS Identifier escape operation on a Reader input, writing the results to a Writer.
escapeCssIdentifier(String) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapeCssIdentifier(String, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeCssIdentifier(String, Writer, CssIdentifierEscapeType, CssIdentifierEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS Identifier escape operation on a String input, writing the results to a Writer.
escapeCssIdentifier(String, CssIdentifierEscapeType, CssIdentifierEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS Identifier escape operation on a String input.
escapeCssIdentifierMinimal(char[], int, int, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 1 (only basic set) escape operation on a char[] input.
escapeCssIdentifierMinimal(Reader, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapeCssIdentifierMinimal(String) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 1 (only basic set) escape operation on a String input.
escapeCssIdentifierMinimal(String, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS Identifier level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapeCssString(char[], int, int, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapeCssString(char[], int, int, Writer, CssStringEscapeType, CssStringEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS String escape operation on a char[] input.
escapeCssString(Reader, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeCssString(Reader, Writer, CssStringEscapeType, CssStringEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS String escape operation on a Reader input, writing results to a Writer.
escapeCssString(String) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapeCssString(String, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeCssString(String, Writer, CssStringEscapeType, CssStringEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS String escape operation on a String input, writing results to a Writer.
escapeCssString(String, CssStringEscapeType, CssStringEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS String escape operation on a String input.
escapeCssStringMinimal(char[], int, int, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 1 (only basic set) escape operation on a char[] input.
escapeCssStringMinimal(Reader, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapeCssStringMinimal(String) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 1 (only basic set) escape operation on a String input.
escapeCssStringMinimal(String, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS String level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapeCsv(char[], int, int, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV escape operation on a char[] input.
escapeCsv(Reader, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV escape operation on a Reader input, writing results to a Writer.
escapeCsv(String) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV escape operation on a String input.
escapeCsv(String, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV escape operation on a String input, writing results to a Writer.
escapeHtml(char[], int, int, Writer, HtmlEscapeType, HtmlEscapeLevel) - Static method in class org.unbescape.html.HtmlEscape
Perform a (configurable) HTML escape operation on a char[] input.
escapeHtml(Reader, Writer, HtmlEscapeType, HtmlEscapeLevel) - Static method in class org.unbescape.html.HtmlEscape
Perform a (configurable) HTML escape operation on a Reader input, writing results to a Writer.
escapeHtml(String, Writer, HtmlEscapeType, HtmlEscapeLevel) - Static method in class org.unbescape.html.HtmlEscape
Perform a (configurable) HTML escape operation on a String input, writing results to a Writer.
escapeHtml(String, HtmlEscapeType, HtmlEscapeLevel) - Static method in class org.unbescape.html.HtmlEscape
Perform a (configurable) HTML escape operation on a String input.
escapeHtml4(char[], int, int, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 2 (result is ASCII) escape operation on a char[] input.
escapeHtml4(Reader, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 2 (result is ASCII) escape operation on a Reader input, writing results to a Writer.
escapeHtml4(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 2 (result is ASCII) escape operation on a String input.
escapeHtml4(String, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 2 (result is ASCII) escape operation on a String input, writing results to a Writer.
escapeHtml4Xml(char[], int, int, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 1 (XML-style) escape operation on a char[] input.
escapeHtml4Xml(Reader, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 1 (XML-style) escape operation on a Reader input, writing results to a Writer.
escapeHtml4Xml(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 1 (XML-style) escape operation on a String input.
escapeHtml4Xml(String, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML 4 level 1 (XML-style) escape operation on a String input, writing results to a Writer.
escapeHtml5(char[], int, int, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 2 (result is ASCII) escape operation on a char[] input.
escapeHtml5(Reader, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 2 (result is ASCII) escape operation on a Reader input, writing results to a Writer.
escapeHtml5(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 2 (result is ASCII) escape operation on a String input.
escapeHtml5(String, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 2 (result is ASCII) escape operation on a String input, writing results to a Writer.
escapeHtml5Xml(char[], int, int, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 1 (XML-style) escape operation on a char[] input.
escapeHtml5Xml(Reader, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 1 (XML-style) escape operation on a Reader input, writing results to a Writer.
escapeHtml5Xml(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 1 (XML-style) escape operation on a String input.
escapeHtml5Xml(String, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 1 (XML-style) escape operation on a String input, writing results to a Writer.
escapeJava(char[], int, int, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapeJava(char[], int, int, Writer, JavaEscapeLevel) - Static method in class org.unbescape.java.JavaEscape
Perform a (configurable) Java escape operation on a char[] input.
escapeJava(Reader, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeJava(Reader, Writer, JavaEscapeLevel) - Static method in class org.unbescape.java.JavaEscape
Perform a (configurable) Java escape operation on a Reader input, writing results to a Writer.
escapeJava(String) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapeJava(String, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeJava(String, Writer, JavaEscapeLevel) - Static method in class org.unbescape.java.JavaEscape
Perform a (configurable) Java escape operation on a String input, writing results to a Writer.
escapeJava(String, JavaEscapeLevel) - Static method in class org.unbescape.java.JavaEscape
Perform a (configurable) Java escape operation on a String input.
escapeJavaMinimal(char[], int, int, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 1 (only basic set) escape operation on a char[] input.
escapeJavaMinimal(Reader, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapeJavaMinimal(String) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 1 (only basic set) escape operation on a String input.
escapeJavaMinimal(String, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapeJavaScript(char[], int, int, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapeJavaScript(char[], int, int, Writer, JavaScriptEscapeType, JavaScriptEscapeLevel) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a (configurable) JavaScript escape operation on a char[] input.
escapeJavaScript(Reader, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeJavaScript(Reader, Writer, JavaScriptEscapeType, JavaScriptEscapeLevel) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a (configurable) JavaScript escape operation on a Reader input, writing results to a Writer.
escapeJavaScript(String) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapeJavaScript(String, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeJavaScript(String, Writer, JavaScriptEscapeType, JavaScriptEscapeLevel) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a (configurable) JavaScript escape operation on a String input, writing results to a Writer.
escapeJavaScript(String, JavaScriptEscapeType, JavaScriptEscapeLevel) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a (configurable) JavaScript escape operation on a String input.
escapeJavaScriptMinimal(char[], int, int, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 1 (only basic set) escape operation on a char[] input.
escapeJavaScriptMinimal(Reader, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapeJavaScriptMinimal(String) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 1 (only basic set) escape operation on a String input.
escapeJavaScriptMinimal(String, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapeJson(char[], int, int, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapeJson(char[], int, int, Writer, JsonEscapeType, JsonEscapeLevel) - Static method in class org.unbescape.json.JsonEscape
Perform a (configurable) JSON escape operation on a char[] input.
escapeJson(Reader, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeJson(Reader, Writer, JsonEscapeType, JsonEscapeLevel) - Static method in class org.unbescape.json.JsonEscape
Perform a (configurable) JSON escape operation on a Reader input, writing results to a Writer.
escapeJson(String) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapeJson(String, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeJson(String, Writer, JsonEscapeType, JsonEscapeLevel) - Static method in class org.unbescape.json.JsonEscape
Perform a (configurable) JSON escape operation on a String input, writing results to a Writer.
escapeJson(String, JsonEscapeType, JsonEscapeLevel) - Static method in class org.unbescape.json.JsonEscape
Perform a (configurable) JSON escape operation on a String input.
escapeJsonMinimal(char[], int, int, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 1 (only basic set) escape operation on a char[] input.
escapeJsonMinimal(Reader, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapeJsonMinimal(String) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 1 (only basic set) escape operation on a String input.
escapeJsonMinimal(String, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapePropertiesKey(char[], int, int, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapePropertiesKey(char[], int, int, Writer, PropertiesKeyEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Key escape operation on a char[] input.
escapePropertiesKey(Reader, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapePropertiesKey(Reader, Writer, PropertiesKeyEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Key escape operation on a Reader input, writing results to a Writer.
escapePropertiesKey(String) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapePropertiesKey(String, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapePropertiesKey(String, Writer, PropertiesKeyEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Key escape operation on a String input, writing results to a Writer.
escapePropertiesKey(String, PropertiesKeyEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Key escape operation on a String input.
escapePropertiesKeyMinimal(char[], int, int, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 1 (only basic set) escape operation on a char[] input.
escapePropertiesKeyMinimal(Reader, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapePropertiesKeyMinimal(String) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 1 (only basic set) escape operation on a String input.
escapePropertiesKeyMinimal(String, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Key level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapePropertiesValue(char[], int, int, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 2 (basic set and all non-ASCII chars) escape operation on a char[] input.
escapePropertiesValue(char[], int, int, Writer, PropertiesValueEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Value escape operation on a String input.
escapePropertiesValue(Reader, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 2 (basic set and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapePropertiesValue(Reader, Writer, PropertiesValueEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Value escape operation on a Reader input, writing results to a Writer.
escapePropertiesValue(String) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 2 (basic set and all non-ASCII chars) escape operation on a String input.
escapePropertiesValue(String, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 2 (basic set and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapePropertiesValue(String, Writer, PropertiesValueEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Value escape operation on a String input, writing results to a Writer.
escapePropertiesValue(String, PropertiesValueEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Value escape operation on a String input.
escapePropertiesValueMinimal(char[], int, int, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 1 (only basic set) escape operation on a char[] input.
escapePropertiesValueMinimal(Reader, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 1 (only basic set) escape operation on a Reader input, writing results to a Writer.
escapePropertiesValueMinimal(String) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 1 (only basic set) escape operation on a String input.
escapePropertiesValueMinimal(String, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties Value level 1 (only basic set) escape operation on a String input, writing results to a Writer.
escapeUriFragmentId(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a char[] input using UTF-8 as encoding.
escapeUriFragmentId(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a char[] input.
escapeUriFragmentId(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
escapeUriFragmentId(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a Reader input, writing results to a Writer.
escapeUriFragmentId(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a String input using UTF-8 as encoding.
escapeUriFragmentId(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a String input using UTF-8 as encoding, writing results to a Writer.
escapeUriFragmentId(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a String input, writing results to a Writer.
escapeUriFragmentId(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier escape operation on a String input.
escapeUriPath(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a char[] input using UTF-8 as encoding.
escapeUriPath(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a char[] input.
escapeUriPath(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
escapeUriPath(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a Reader input, writing results to a Writer.
escapeUriPath(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a String input using UTF-8 as encoding.
escapeUriPath(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a String input using UTF-8 as encoding, writing results to a Writer.
escapeUriPath(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a String input, writing results to a Writer.
escapeUriPath(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path escape operation on a String input.
escapeUriPathSegment(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a char[] input using UTF-8 as encoding.
escapeUriPathSegment(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a char[] input.
escapeUriPathSegment(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
escapeUriPathSegment(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a Reader input, writing results to a Writer.
escapeUriPathSegment(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a String input using UTF-8 as encoding.
escapeUriPathSegment(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a String input using UTF-8 as encoding, writing results to a Writer.
escapeUriPathSegment(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a String input, writing results to a Writer.
escapeUriPathSegment(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment escape operation on a String input.
escapeUriQueryParam(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a char[] input using UTF-8 as encoding.
escapeUriQueryParam(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a char[] input.
escapeUriQueryParam(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
escapeUriQueryParam(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a Reader input, writing results to a Writer.
escapeUriQueryParam(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a String input using UTF-8 as encoding.
escapeUriQueryParam(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a String input using UTF-8 as encoding, writing results to a Writer.
escapeUriQueryParam(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a String input, writing results to a Writer.
escapeUriQueryParam(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) escape operation on a String input.
escapeXml10(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a char[] input.
escapeXml10(char[], int, int, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a char[] input.
escapeXml10(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeXml10(Reader, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a Reader input, writing results to a Writer.
escapeXml10(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input.
escapeXml10(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeXml10(String, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a String input, writing results to a Writer.
escapeXml10(String, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a String input.
escapeXml10Attribute(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a char[] input meant to be an XML attribute value.
escapeXml10Attribute(char[], int, int, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a char[] input meant to be an XML attribute value.
escapeXml10Attribute(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.
escapeXml10Attribute(Reader, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.
escapeXml10Attribute(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input meant to be an XML attribute value.
escapeXml10Attribute(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input meant to be an XML attribute value, writing results to a Writer.
escapeXml10Attribute(String, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a String input meant to be an XML attribute value, writing results to a Writer.
escapeXml10Attribute(String, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 escape operation on a String input meant to be an XML attribute value.
escapeXml10AttributeMinimal(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a char[] input meant to be an XML attribute value.
escapeXml10AttributeMinimal(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.
escapeXml10AttributeMinimal(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a String input meant to be an XML attribute value.
escapeXml10AttributeMinimal(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a String input meant to be an XML attribute value, writing results to a Writer.
escapeXml10Minimal(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a char[] input.
escapeXml10Minimal(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a Reader input, writing results to a Writer.
escapeXml10Minimal(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a String input.
escapeXml10Minimal(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.0 level 1 (only markup-significant chars) escape operation on a String input, writing results to a Writer.
escapeXml11(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a char[] input.
escapeXml11(char[], int, int, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a char[] input.
escapeXml11(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a Reader input, writing results to a Writer.
escapeXml11(Reader, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a Reader input, writing results to a Writer.
escapeXml11(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input.
escapeXml11(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input, writing results to a Writer.
escapeXml11(String, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a String input, writing results to a Writer.
escapeXml11(String, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a String input.
escapeXml11Attribute(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a char[] input meant to be an XML attribute value.
escapeXml11Attribute(char[], int, int, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a char[] input meant to be an XML attribute value.
escapeXml11Attribute(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.
escapeXml11Attribute(Reader, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.
escapeXml11Attribute(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input meant to be an XML attribute value.
escapeXml11Attribute(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 2 (markup-significant and all non-ASCII chars) escape operation on a String input meant to be an XML attribute value, writing results to a Writer.
escapeXml11Attribute(String, Writer, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a String input meant to be an XML attribute value, writing results to a Writer.
escapeXml11Attribute(String, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a String input meant to be an XML attribute value.
escapeXml11AttributeMinimal(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a char[] input meant to be an XML attribute value.
escapeXml11AttributeMinimal(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a Reader input meant to be an XML attribute value, writing results to a Writer.
escapeXml11AttributeMinimal(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a String input meant to be an XML attribute value.
escapeXml11AttributeMinimal(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a String input meant to be an XML attribute value, writing results to a Writer.
escapeXml11Minimal(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a char[] input.
escapeXml11Minimal(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a Reader input, writing results to a Writer.
escapeXml11Minimal(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a String input.
escapeXml11Minimal(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 1.1 level 1 (only markup-significant chars) escape operation on a String input, writing results to a Writer.

F

forLevel(int) - Static method in enum org.unbescape.css.CssIdentifierEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.css.CssStringEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.html.HtmlEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.java.JavaEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.javascript.JavaScriptEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.json.JsonEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.properties.PropertiesKeyEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.properties.PropertiesValueEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.
forLevel(int) - Static method in enum org.unbescape.xml.XmlEscapeLevel
Utility method for obtaining an enum value from its corresponding int level value.

G

getEscapeLevel() - Method in enum org.unbescape.css.CssIdentifierEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.css.CssStringEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.html.HtmlEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.java.JavaEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.javascript.JavaScriptEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.json.JsonEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.properties.PropertiesKeyEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.properties.PropertiesValueEscapeLevel
Return the int escape level.
getEscapeLevel() - Method in enum org.unbescape.xml.XmlEscapeLevel
Return the int escape level.
getUseBackslashEscapes() - Method in enum org.unbescape.css.CssIdentifierEscapeType
 
getUseBackslashEscapes() - Method in enum org.unbescape.css.CssStringEscapeType
 
getUseCompactHexa() - Method in enum org.unbescape.css.CssIdentifierEscapeType
 
getUseCompactHexa() - Method in enum org.unbescape.css.CssStringEscapeType
 

H

HEXADECIMAL_REFERENCES - org.unbescape.html.HtmlEscapeType
Always use Hexadecimal Character References (no NCRs will be used).
HEXADECIMAL_REFERENCES - org.unbescape.xml.XmlEscapeType
Always use Hexadecimal Character References (no CERs will be used).
HTML4_NAMED_REFERENCES_DEFAULT_TO_DECIMAL - org.unbescape.html.HtmlEscapeType
Use HTML 4 NCRs if possible, default to Decimal Character References.
HTML4_NAMED_REFERENCES_DEFAULT_TO_HEXA - org.unbescape.html.HtmlEscapeType
Use HTML 4 NCRs if possible, default to Hexadecimal Character References.
HTML5_NAMED_REFERENCES_DEFAULT_TO_DECIMAL - org.unbescape.html.HtmlEscapeType
Use HTML5 NCRs if possible, default to Decimal Character References.
HTML5_NAMED_REFERENCES_DEFAULT_TO_HEXA - org.unbescape.html.HtmlEscapeType
Use HTML5 NCRs if possible, default to Hexadecimal Character References.
HtmlEscape - Class in org.unbescape.html
Utility class for performing HTML escape/unescape operations.
HtmlEscapeLevel - Enum in org.unbescape.html
Levels defined for HTML escape/unescape operations:
HtmlEscapeType - Enum in org.unbescape.html
Types of escape operations to be performed on HTML text:

I

isVersionStableRelease() - Static method in class org.unbescape.Unbescape
 

J

JavaEscape - Class in org.unbescape.java
Utility class for performing Java escape/unescape operations.
JavaEscapeLevel - Enum in org.unbescape.java
Levels defined for Java escape/unescape operations:
JavaScriptEscape - Class in org.unbescape.javascript
Utility class for performing JavaScript escape/unescape operations.
JavaScriptEscapeLevel - Enum in org.unbescape.javascript
Levels defined for JavaScript escape/unescape operations:
JavaScriptEscapeType - Enum in org.unbescape.javascript
Types of escape operations to be performed on JavaScript text:
JsonEscape - Class in org.unbescape.json
Utility class for performing JSON escape/unescape operations.
JsonEscapeLevel - Enum in org.unbescape.json
Levels defined for JSON escape/unescape operations:
JsonEscapeType - Enum in org.unbescape.json
Types of escape operations to be performed on JSON text:

L

LEVEL_0_ONLY_MARKUP_SIGNIFICANT_EXCEPT_APOS - org.unbescape.html.HtmlEscapeLevel
Level 0 escape: escape only markup-significant characters, excluding the apostrophe: <, >, & and "
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.css.CssIdentifierEscapeLevel
Level 1 escape: escape only the basic escape set: Backslash Escape plus non-displayable control chars.
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.css.CssStringEscapeLevel
Level 1 escape: escape only the basic escape set: Backslash Escape plus non-displayable control chars.
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.java.JavaEscapeLevel
Level 1 escape: escape only the basic escape set: Single Escape Chars plus non-displayable control chars.
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.javascript.JavaScriptEscapeLevel
Level 1 escape: escape only the basic escape set: Single Escape Chars plus non-displayable control chars.
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.json.JsonEscapeLevel
Level 1 escape: escape only the basic escape set: Single Escape Chars plus non-displayable control chars.
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.properties.PropertiesKeyEscapeLevel
Level 1 escape: escape only the basic escape set: Single Escape Chars plus non-displayable control chars.
LEVEL_1_BASIC_ESCAPE_SET - org.unbescape.properties.PropertiesValueEscapeLevel
Level 1 escape: escape only the basic escape set: Single Escape Chars plus non-displayable control chars.
LEVEL_1_ONLY_MARKUP_SIGNIFICANT - org.unbescape.html.HtmlEscapeLevel
Level 1 escape (XML-style): escape only markup-significant characters (including the apostrophe): <, >, &, " and '
LEVEL_1_ONLY_MARKUP_SIGNIFICANT - org.unbescape.xml.XmlEscapeLevel
Level 1 escape: escape only markup-significant characters (all five XML predefined entities): <, >, &, " and '
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.css.CssIdentifierEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.css.CssStringEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.java.JavaEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.javascript.JavaScriptEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.json.JsonEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.properties.PropertiesKeyEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET - org.unbescape.properties.PropertiesValueEscapeLevel
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_MARKUP_SIGNIFICANT - org.unbescape.html.HtmlEscapeLevel
Level 2 escape: escape markup-significant characters plus all non-ASCII characters (result will always be ASCII).
LEVEL_2_ALL_NON_ASCII_PLUS_MARKUP_SIGNIFICANT - org.unbescape.xml.XmlEscapeLevel
Level 2 escape: escape markup-significant characters plus all non-ASCII characters (result will always be ASCII).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.css.CssIdentifierEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.css.CssStringEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.html.HtmlEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.java.JavaEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.javascript.JavaScriptEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.json.JsonEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.properties.PropertiesKeyEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.properties.PropertiesValueEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_3_ALL_NON_ALPHANUMERIC - org.unbescape.xml.XmlEscapeLevel
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges).
LEVEL_4_ALL_CHARACTERS - org.unbescape.css.CssIdentifierEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.css.CssStringEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.html.HtmlEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.java.JavaEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.javascript.JavaScriptEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.json.JsonEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.properties.PropertiesKeyEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.properties.PropertiesValueEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.
LEVEL_4_ALL_CHARACTERS - org.unbescape.xml.XmlEscapeLevel
Level 4 escape: escape all characters, including alphanumeric.

O

org.unbescape - package org.unbescape
 
org.unbescape.css - package org.unbescape.css
 
org.unbescape.csv - package org.unbescape.csv
 
org.unbescape.html - package org.unbescape.html
 
org.unbescape.java - package org.unbescape.java
 
org.unbescape.javascript - package org.unbescape.javascript
 
org.unbescape.json - package org.unbescape.json
 
org.unbescape.properties - package org.unbescape.properties
 
org.unbescape.uri - package org.unbescape.uri
 
org.unbescape.xml - package org.unbescape.xml
 

P

PropertiesEscape - Class in org.unbescape.properties
Utility class for performing Java Properties (.properties files) escape/unescape operations.
PropertiesKeyEscapeLevel - Enum in org.unbescape.properties
Levels defined for Java Properties escape/unescape operations:
PropertiesValueEscapeLevel - Enum in org.unbescape.properties
Levels defined for Java Properties escape/unescape operations:

S

SINGLE_ESCAPE_CHARS_DEFAULT_TO_UHEXA - org.unbescape.javascript.JavaScriptEscapeType
Use Single Escape Chars if possible, default to \uFFFF hexadecimal escapes.
SINGLE_ESCAPE_CHARS_DEFAULT_TO_UHEXA - org.unbescape.json.JsonEscapeType
Use Single Escape Chars if possible, default to \uFFFF hexadecimal escapes.
SINGLE_ESCAPE_CHARS_DEFAULT_TO_XHEXA_AND_UHEXA - org.unbescape.javascript.JavaScriptEscapeType
Use Single Escape Chars if possible, default to \xFF hexadecimal escapes if possible (characters <= U+FF), then default to \uFFFF hexadecimal escapes.
SIX_DIGIT_HEXA - org.unbescape.css.CssIdentifierEscapeType
Always use \FFFFFF 6-digit hexadecimal escapes.
SIX_DIGIT_HEXA - org.unbescape.css.CssStringEscapeType
Always use \FFFFFF 6-digit hexadecimal escapes.

U

UHEXA - org.unbescape.javascript.JavaScriptEscapeType
Always use \uFFFF hexadecimal escapes.
UHEXA - org.unbescape.json.JsonEscapeType
Always use \uFFFF hexadecimal escapes.
Unbescape - Class in org.unbescape
Class meant to keep some constants related to the version of the Unbescape library being used, build date, etc.
unescapeCss(char[], int, int, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS unescape operation on a char[] input.
unescapeCss(Reader, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS unescape operation on a String input, writing results to a Writer.
unescapeCss(String) - Static method in class org.unbescape.css.CssEscape
Perform a CSS unescape operation on a String input.
unescapeCss(String, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS unescape operation on a String input, writing results to a Writer.
unescapeCsv(char[], int, int, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV unescape operation on a char[] input.
unescapeCsv(Reader, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV unescape operation on a Reader input, writing results to a Writer.
unescapeCsv(String) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV unescape operation on a String input.
unescapeCsv(String, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV unescape operation on a String input, writing results to a Writer.
unescapeHtml(char[], int, int, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML unescape operation on a char[] input.
unescapeHtml(Reader, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML unescape operation on a Reader input, writing results to a Writer.
unescapeHtml(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML unescape operation on a String input.
unescapeHtml(String, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML unescape operation on a String input, writing results to a Writer.
unescapeJava(char[], int, int, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java unescape operation on a char[] input.
unescapeJava(Reader, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java unescape operation on a Reader input, writing results to a Writer.
unescapeJava(String) - Static method in class org.unbescape.java.JavaEscape
Perform a Java unescape operation on a String input.
unescapeJava(String, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java unescape operation on a String input, writing results to a Writer.
unescapeJavaScript(char[], int, int, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript unescape operation on a char[] input.
unescapeJavaScript(Reader, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript unescape operation on a Reader input, writing results to a Writer.
unescapeJavaScript(String) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript unescape operation on a String input.
unescapeJavaScript(String, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript unescape operation on a String input, writing results to a Writer.
unescapeJson(char[], int, int, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON unescape operation on a char[] input.
unescapeJson(Reader, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON unescape operation on a Reader input, writing results to a Writer.
unescapeJson(String) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON unescape operation on a String input.
unescapeJson(String, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON unescape operation on a String input, writing results to a Writer.
unescapeProperties(char[], int, int, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties (key or value) unescape operation on a char[] input.
unescapeProperties(Reader, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties (key or value) unescape operation on a Reader input, writing results to a Writer.
unescapeProperties(String) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties (key or value) unescape operation on a String input.
unescapeProperties(String, Writer) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties (key or value) unescape operation on a String input, writing results to a Writer.
unescapeUriFragmentId(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a char[] input using UTF-8 as encoding.
unescapeUriFragmentId(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a char[] input.
unescapeUriFragmentId(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
unescapeUriFragmentId(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a Reader input, writing results to a Writer.
unescapeUriFragmentId(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a String input using UTF-8 as encoding.
unescapeUriFragmentId(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a String input using UTF-8 as encoding, writing results to a Writer.
unescapeUriFragmentId(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a String input, writing results to a Writer.
unescapeUriFragmentId(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI fragment identifier unescape operation on a String input.
unescapeUriPath(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a char[] input using UTF-8 as encoding.
unescapeUriPath(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a char[] input.
unescapeUriPath(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
unescapeUriPath(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a Reader input, writing results to a Writer.
unescapeUriPath(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a String input using UTF-8 as encoding.
unescapeUriPath(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a String input using UTF-8 as encoding, writing results to a Writer.
unescapeUriPath(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a String input, writing results to a Writer.
unescapeUriPath(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path unescape operation on a String input.
unescapeUriPathSegment(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a char[] input using UTF-8 as encoding.
unescapeUriPathSegment(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a char[] input.
unescapeUriPathSegment(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
unescapeUriPathSegment(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a Reader input, writing results to a Writer.
unescapeUriPathSegment(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a String input using UTF-8 as encoding.
unescapeUriPathSegment(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a String input using UTF-8 as encoding, writing results to a Writer.
unescapeUriPathSegment(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a String input, writing results to a Writer.
unescapeUriPathSegment(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI path segment unescape operation on a String input.
unescapeUriQueryParam(char[], int, int, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a char[] input using UTF-8 as encoding.
unescapeUriQueryParam(char[], int, int, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a char[] input.
unescapeUriQueryParam(Reader, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a Reader input using UTF-8 as encoding, writing results to a Writer.
unescapeUriQueryParam(Reader, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a Reader input, writing results to a Writer.
unescapeUriQueryParam(String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a String input using UTF-8 as encoding.
unescapeUriQueryParam(String, Writer) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a String input using UTF-8 as encoding, writing results to a Writer.
unescapeUriQueryParam(String, Writer, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a String input, writing results to a Writer.
unescapeUriQueryParam(String, String) - Static method in class org.unbescape.uri.UriEscape
Perform am URI query parameter (name or value) unescape operation on a String input.
unescapeXml(char[], int, int, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML unescape operation on a char[] input.
unescapeXml(Reader, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML unescape operation on a Reader input, writing results to a Writer.
unescapeXml(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML unescape operation on a String input.
unescapeXml(String, Writer) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML unescape operation on a String input, writing results to a Writer.
UriEscape - Class in org.unbescape.uri
Utility class for performing URI escape/unescape operations.

V

valueOf(String) - Static method in enum org.unbescape.css.CssIdentifierEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.css.CssIdentifierEscapeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.css.CssStringEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.css.CssStringEscapeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.html.HtmlEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.html.HtmlEscapeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.java.JavaEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.javascript.JavaScriptEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.javascript.JavaScriptEscapeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.json.JsonEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.json.JsonEscapeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.properties.PropertiesKeyEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.properties.PropertiesValueEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.xml.XmlEscapeLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.unbescape.xml.XmlEscapeType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.unbescape.css.CssIdentifierEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.css.CssIdentifierEscapeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.css.CssStringEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.css.CssStringEscapeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.html.HtmlEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.html.HtmlEscapeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.java.JavaEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.javascript.JavaScriptEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.javascript.JavaScriptEscapeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.json.JsonEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.json.JsonEscapeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.properties.PropertiesKeyEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.properties.PropertiesValueEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.xml.XmlEscapeLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.unbescape.xml.XmlEscapeType
Returns an array containing the constants of this enum type, in the order they are declared.
VERSION - Static variable in class org.unbescape.Unbescape
 
VERSION_BUILD - Static variable in class org.unbescape.Unbescape
 
VERSION_MAJOR - Static variable in class org.unbescape.Unbescape
 
VERSION_MINOR - Static variable in class org.unbescape.Unbescape
 
VERSION_TYPE - Static variable in class org.unbescape.Unbescape
 

X

XHEXA_DEFAULT_TO_UHEXA - org.unbescape.javascript.JavaScriptEscapeType
Use \xFF hexadecimal escapes if possible (characters <= U+FF), default to \uFFFF hexadecimal escapes.
XmlEscape - Class in org.unbescape.xml
Utility class for performing XML escape/unescape operations.
XmlEscapeLevel - Enum in org.unbescape.xml
Levels defined for XML escape/unescape operations:
XmlEscapeType - Enum in org.unbescape.xml
Types of escape operations to be performed on XML text:
B C D E F G H I J L O P S U V X 
Skip navigation links

Copyright © 2018 The UNBESCAPE team. All rights reserved.