java.lang.Object
com.aoapps.hodgepodge.util.EncodingUtils
Deprecated.
Use new encoding package instead.
Provides encoding and escaping for various type of data.
- Author:
- AO Industries, Inc.
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
encodeHtml
(char ch, boolean makeBr, boolean makeNbsp, Appendable out, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static void
encodeHtml
(char ch, Appendable out, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static void
encodeHtml
(CharSequence cs, int start, int end, boolean makeBr, boolean makeNbsp, Appendable out, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static void
encodeHtml
(CharSequence cs, int start, int end, Appendable out, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static String
encodeHtml
(Object value, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static String
encodeHtml
(Object value, boolean makeBr, boolean makeNbsp, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static void
encodeHtml
(Object value, boolean makeBr, boolean makeNbsp, Appendable out, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static void
encodeHtml
(Object value, Appendable out, boolean isXhtml) Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.static String
Deprecated.UseCoercion.toString(java.lang.Object)
instead.
-
Method Details
-
toString
Deprecated.UseCoercion.toString(java.lang.Object)
instead. -
encodeHtml
@Deprecated public static void encodeHtml(Object value, Appendable out, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.Escapes for use in a (X)HTML document and writes to the providedAppendable
. In addition to the standard XML Body encoding, it turns newlines into <br />, tabs to 	, and spaces to  See TextInXhtmlEncoder.
- Parameters:
value
- the object to be escaped. If value isnull
, nothing is written.- Throws:
IOException
-
encodeHtml
@Deprecated public static void encodeHtml(CharSequence cs, int start, int end, Appendable out, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.Escapes for use in a (X)HTML document and writes to the providedAppendable
. In addition to the standard XML Body encoding, it turns newlines into <br /> and spaces to  See TextInXhtmlEncoder.
- Parameters:
cs
- the string to be escaped. If S isnull
, nothing is written.- Throws:
IOException
-
encodeHtml
Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.See TextInXhtmlEncoder.- Throws:
IOException
-
encodeHtml
@Deprecated public static void encodeHtml(char ch, Appendable out, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.See TextInXhtmlEncoder.- Throws:
IOException
-
encodeHtml
@Deprecated public static void encodeHtml(Object value, boolean makeBr, boolean makeNbsp, Appendable out, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.See TextInXhtmlEncoder.- Throws:
IOException
-
encodeHtml
@Deprecated public static void encodeHtml(CharSequence cs, int start, int end, boolean makeBr, boolean makeNbsp, Appendable out, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.Escapes for use in a (X)HTML document and writes to the providedAppendable
. Optionally, it turns newlines into <br /> and spaces to   Any characters less than 0x1f that are not \t, \r, or \n are completely filtered.See TextInXhtmlEncoder.
- Parameters:
cs
- the string to be escaped. If S isnull
, nothing is written.makeBr
- will write <br /> tags for every newline charactermakeNbsp
- will write   for a space when another space follows- Throws:
IOException
-
encodeHtml
@Deprecated public static String encodeHtml(Object value, boolean makeBr, boolean makeNbsp, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.See TextInXhtmlEncoder.- Parameters:
value
- the string to be escaped.- Returns:
- if value is null then null otherwise value escaped
- Throws:
IOException
-
encodeHtml
@Deprecated public static void encodeHtml(char ch, boolean makeBr, boolean makeNbsp, Appendable out, boolean isXhtml) throws IOException Deprecated.the effects of makeBr and makeNbsp should be handled by CSS white-space property.See TextInXhtmlEncoder.- Throws:
IOException
-