Uses of Class
com.google.common.escape.Escaper
- 
Packages that use Escaper Package Description com.google.common.escape Interfaces, utilities, and simple implementations of escapers and encoders.com.google.common.html Escapers for HTML.com.google.common.net Utility methods and classes for networking (such as IP addresses and domain names).com.google.common.xml Escapers for XML.
- 
- 
Uses of Escaper in com.google.common.escapeSubclasses of Escaper in com.google.common.escape Modifier and Type Class Description classArrayBasedCharEscaperACharEscaperthat uses an array to quickly look up replacement characters for a givencharvalue.classArrayBasedUnicodeEscaperAUnicodeEscaperthat uses an array to quickly look up replacement characters for a given code point.classCharEscaperAn object that converts literal text into a format safe for inclusion in a particular context (such as an XML document).classUnicodeEscaperAnEscaperthat converts literal text into a format safe for inclusion in a particular context (such as an XML document).Methods in com.google.common.escape that return Escaper Modifier and Type Method Description EscaperEscapers.Builder. build()Returns a new escaper based on the current state of the builder.static EscaperEscapers. nullEscaper()Returns anEscaperthat does no escaping, passing all character data through unchanged.EscaperCharEscaperBuilder. toEscaper()Convert this builder into a char escaper which is just a decorator around the underlying array of replacement char[]s.
- 
Uses of Escaper in com.google.common.htmlMethods in com.google.common.html that return Escaper Modifier and Type Method Description static EscaperHtmlEscapers. htmlEscaper()
- 
Uses of Escaper in com.google.common.netSubclasses of Escaper in com.google.common.net Modifier and Type Class Description classPercentEscaperAUnicodeEscaperthat escapes some set of Java characters using a UTF-8 based percent encoding scheme.Methods in com.google.common.net that return Escaper Modifier and Type Method Description static EscaperUrlEscapers. urlFormParameterEscaper()Returns anEscaperinstance that escapes strings so they can be safely included in URL form parameter names and values.static EscaperUrlEscapers. urlFragmentEscaper()Returns anEscaperinstance that escapes strings so they can be safely included in a URL fragment.static EscaperUrlEscapers. urlPathSegmentEscaper()Returns anEscaperinstance that escapes strings so they can be safely included in URL path segments.
- 
Uses of Escaper in com.google.common.xmlMethods in com.google.common.xml that return Escaper Modifier and Type Method Description static EscaperXmlEscapers. xmlAttributeEscaper()Returns anEscaperinstance that escapes special characters in a string so it can safely be included in XML document as an attribute value.static EscaperXmlEscapers. xmlContentEscaper()Returns anEscaperinstance that escapes special characters in a string so it can safely be included in an XML document as element content.
 
-