Class UnicodeMap.Composer<T>

  • Enclosing class:
    UnicodeMap<T>

    public abstract static class UnicodeMap.Composer<T>
    extends java.lang.Object
    Used to add complex values, where the value isn't replaced but in some sense composed
    • Constructor Summary

      Constructors 
      Constructor Description
      Composer()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract T compose​(int codePoint, java.lang.String string, T a, T b)
      This will be called with either a string or a code point.
      • Methods inherited from class java.lang.Object

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

      • Composer

        public Composer()
    • Method Detail

      • compose

        public abstract T compose​(int codePoint,
                                  java.lang.String string,
                                  T a,
                                  T b)
        This will be called with either a string or a code point. The result is the new value for that item. If the codepoint is used, the string is null; if the string is used, the codepoint is -1.
        Parameters:
        a -
        b -