Class EntitiesToUnicode


  • public class EntitiesToUnicode
    extends Object
    This class contains entities that can be used in an entity tag.
    • Field Detail

      • map

        @Deprecated
        public static final HashMap<String,​Character> map
        Deprecated.
        use the getter (getMap()) instead of accessing this field directly
        This is a map that contains the names of entities and their unicode value.
    • Constructor Detail

      • EntitiesToUnicode

        public EntitiesToUnicode()
    • Method Detail

      • decodeEntity

        public static char decodeEntity​(String name)
        Translates an entity to a unicode character.
        Parameters:
        name - the name of the entity
        Returns:
        the corresponding unicode character
      • decodeString

        public static String decodeString​(String s)
        Translates a String with entities (&...;) to a String without entities, replacing the entity with the right (unicode) character.
        Parameters:
        s - string to be decoded
        Returns:
        a ddecoded string