| java.lang.Object com.lowagie.text.xml.simpleparser.EntitiesToUnicode
EntitiesToUnicode | public class EntitiesToUnicode (Code) | | This class contains entities that can be used in an entity tag.
|
Field Summary | |
final public static HashMap | map This is a map that contains the names of entities and their unicode value. |
Method Summary | |
public static char | decodeEntity(String name) Translates an entity to a unicode character. | public static String | decodeString(String s) Translates a String with entities (&...;) to a String without entities,
replacing the entity with the right (unicode) character. |
map | final public static HashMap map(Code) | | This is a map that contains the names of entities and their unicode value.
|
decodeEntity | public static char decodeEntity(String name)(Code) | | Translates an entity to a unicode character.
Parameters: name - the name of the entity the corresponding unicode character |
decodeString | public static String decodeString(String s)(Code) | | Translates a String with entities (&...;) to a String without entities,
replacing the entity with the right (unicode) character.
|
|
|