|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.uwyn.rife.template.EncoderHtml
public class EncoderHtml
| Method Summary | |
|---|---|
String |
encode(String value)
Encodes the given value, returning a string which contains only valid characters and represents the given value correctly in the
output format. |
String |
encodeDefensive(String value)
Encodes the given value in a looser fashion than TemplateEncoder.encode(java.lang.String)'s,
only converting patterns which are explicitly not allowed by the output
format, but not guaranteeing that the output value exactly represents
the given value in the output format. |
static EncoderHtml |
getInstance()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static EncoderHtml getInstance()
public String encode(String value)
TemplateEncodervalue correctly in the
output format.
For example, an HTML template's encoder will encode
> as >.
encode in interface TemplateEncodervalue - a string
public String encodeDefensive(String value)
TemplateEncoderTemplateEncoder.encode(java.lang.String)'s,
only converting patterns which are explicitly not allowed by the output
format, but not guaranteeing that the output value exactly represents
the given value in the output format.
For example, an HTML template's encoder will encode some Unicode
characters to corresponding XML entities (such as
é) when this method is called but not encode
< or &.
encodeDefensive in interface TemplateEncodervalue - a string
value
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||