C E F G H J O P U V X

C

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.

E

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, CssIdentifierEscapeType, CssIdentifierEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS Identifier escape operation on a String input.
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.
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(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.
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, CssStringEscapeType, CssStringEscapeLevel) - Static method in class org.unbescape.css.CssEscape
Perform a (configurable) CSS String escape operation on a String input.
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.
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(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.
escapeCsv(String) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV escape operation on a String input.
escapeCsv(char[], int, int, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV escape operation on a char[] input.
escapeHtml(String, HtmlEscapeType, HtmlEscapeLevel) - Static method in class org.unbescape.html.HtmlEscape
Perform a (configurable) HTML escape operation on a String input.
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.
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(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.
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(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.
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(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.
escapeHtml5Xml(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML5 level 1 (XML-style) escape operation on a String input.
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.
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, JavaEscapeLevel) - Static method in class org.unbescape.java.JavaEscape
Perform a (configurable) Java escape operation on a String input.
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.
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(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.
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, JavaScriptEscapeType, JavaScriptEscapeLevel) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a (configurable) JavaScript escape operation on a String input.
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.
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(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.
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, JsonEscapeType, JsonEscapeLevel) - Static method in class org.unbescape.json.JsonEscape
Perform a (configurable) JSON escape operation on a String input.
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.
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(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.
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, PropertiesKeyEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Key escape operation on a String input.
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.
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(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.
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, PropertiesValueEscapeLevel) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a (configurable) Java Properties Value escape operation on a String input.
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.
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(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.
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, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.0 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.
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(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.
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, XmlEscapeType, XmlEscapeLevel) - Static method in class org.unbescape.xml.XmlEscape
Perform a (configurable) XML 1.1 escape operation on a String input.
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.
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(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.

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

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:

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:

O

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.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:

U

unescapeCss(String) - Static method in class org.unbescape.css.CssEscape
Perform a CSS unescape operation on a String input.
unescapeCss(char[], int, int, Writer) - Static method in class org.unbescape.css.CssEscape
Perform a CSS unescape operation on a char[] input.
unescapeCsv(String) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV unescape operation on a String input.
unescapeCsv(char[], int, int, Writer) - Static method in class org.unbescape.csv.CsvEscape
Perform a CSV unescape operation on a char[] input.
unescapeHtml(String) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML unescape operation on a String input.
unescapeHtml(char[], int, int, Writer) - Static method in class org.unbescape.html.HtmlEscape
Perform an HTML unescape operation on a char[] input.
unescapeJava(String) - Static method in class org.unbescape.java.JavaEscape
Perform a Java unescape operation on a String input.
unescapeJava(char[], int, int, Writer) - Static method in class org.unbescape.java.JavaEscape
Perform a Java unescape operation on a char[] input.
unescapeJavaScript(String) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript unescape operation on a String input.
unescapeJavaScript(char[], int, int, Writer) - Static method in class org.unbescape.javascript.JavaScriptEscape
Perform a JavaScript unescape operation on a char[] input.
unescapeJson(String) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON unescape operation on a String input.
unescapeJson(char[], int, int, Writer) - Static method in class org.unbescape.json.JsonEscape
Perform a JSON unescape operation on a char[] input.
unescapeProperties(String) - Static method in class org.unbescape.properties.PropertiesEscape
Perform a Java Properties (key or value) unescape operation on a String input.
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.
unescapeXml(String) - Static method in class org.unbescape.xml.XmlEscape
Perform an XML 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.

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.

X

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:

C E F G H J O P U V X

Copyright © 2014 The UNBESCAPE team. All rights reserved.