Class UnicodeRange


  • public class UnicodeRange
    extends java.lang.Object
    A class that represents a CSS unicode range. This only handles a single range of contigous chars, to handle multiple ranges (comma seperated) use a list of these.
    Version:
    $Id: UnicodeRange.java 1733416 2016-03-03 07:07:13Z gadams $
    • Constructor Summary

      Constructors 
      Constructor Description
      UnicodeRange​(java.lang.String unicodeRange)
      Constructs a unicode range from a CSS unicode range string.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean contains​(int unicodeVal)  
      boolean contains​(java.lang.String unicode)
      Returns true if the specified unicode value is within this range.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • firstUnicodeValue

        private int firstUnicodeValue
      • lastUnicodeValue

        private int lastUnicodeValue
    • Constructor Detail

      • UnicodeRange

        public UnicodeRange​(java.lang.String unicodeRange)
        Constructs a unicode range from a CSS unicode range string.
    • Method Detail

      • contains

        public boolean contains​(java.lang.String unicode)
        Returns true if the specified unicode value is within this range.
      • contains

        public boolean contains​(int unicodeVal)