Class JaspellTernarySearchTrie.TSTNode

    • Field Detail

      • PARENT

        protected static final int PARENT
        Index values for accessing relatives array.
        See Also:
        Constant Field Values
      • LOKID

        protected static final int LOKID
        Index values for accessing relatives array.
        See Also:
        Constant Field Values
      • EQKID

        protected static final int EQKID
        Index values for accessing relatives array.
        See Also:
        Constant Field Values
      • HIKID

        protected static final int HIKID
        Index values for accessing relatives array.
        See Also:
        Constant Field Values
      • data

        protected Object data
        The key to the node.
      • splitchar

        protected char splitchar
        The char used in the split.
    • Constructor Detail

      • TSTNode

        protected TSTNode​(char splitchar,
                          JaspellTernarySearchTrie.TSTNode parent)
        Constructor method.
        Parameters:
        splitchar - The char used in the split.
        parent - The parent node.