Class Trie2.CharSequenceValues

  • Enclosing class:
    Trie2

    public static class Trie2.CharSequenceValues
    extends java.lang.Object
    Struct-like class for holding the results returned by a UTrie2 CharSequence iterator. The iteration walks over a CharSequence, and for each Unicode code point therein returns the character and its associated Trie2 value.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int codePoint
      The code point at index.
      int index
      string index of the current code point.
      int value
      The Trie2 value for the current code point
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • index

        public int index
        string index of the current code point.
      • codePoint

        public int codePoint
        The code point at index.
      • value

        public int value
        The Trie2 value for the current code point
    • Constructor Detail

      • CharSequenceValues

        public CharSequenceValues()