public final class HtmlEncoder
extends java.lang.Object
String
to the HTML-format of a String.
To convert the String
, each character is examined:
Example:
String htmlPresentation = HtmlEncoder.encode("Marie-Thérèse Sørensen");
for more info: see O'Reilly; "HTML: The Definitive Guide" (page 164)
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
encode(BaseColor color)
Converts a
BaseColor into a HTML representation of this BaseColor . |
static java.lang.String |
encode(java.lang.String string)
Converts a
String to the HTML-format of this String . |
static java.lang.String |
getAlignment(int alignment)
Translates the alignment value.
|
static boolean |
isNewLineTag(java.lang.String tag)
Returns true if the tag causes a new line like p, br etc.
|
public static java.lang.String encode(java.lang.String string)
String
to the HTML-format of this String
.string
- The String
to convertString
public static java.lang.String encode(BaseColor color)
BaseColor
into a HTML representation of this BaseColor
.color
- the BaseColor
that has to be converted.public static java.lang.String getAlignment(int alignment)
alignment
- the alignment valuepublic static boolean isNewLineTag(java.lang.String tag)
Copyright © 2013. All Rights Reserved.