Class GenTrie

java.lang.Object
com.twelfthmile.yuga.types.GenTrie
All Implemented Interfaces:
java.io.Serializable

public class GenTrie
extends java.lang.Object
implements java.io.Serializable
Created by johnjoseph on 15/03/17.
See Also:
Serialized Form
  • Field Summary

    Fields
    Modifier and Type Field Description
    boolean child  
    boolean leaf  
    java.util.Map<java.lang.Character,​GenTrie> next  
    java.lang.String token  
  • Constructor Summary

    Constructors
    Constructor Description
    GenTrie()  
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • leaf

      public boolean leaf
    • child

      public boolean child
    • next

      public final java.util.Map<java.lang.Character,​GenTrie> next
    • token

      public java.lang.String token
  • Constructor Details

    • GenTrie

      public GenTrie()