Package com.googlecode.concurrenttrees.radix.node.concrete
-
Class Summary Class Description DefaultByteArrayNodeFactory ANodeFactorywhich createsNodeobjects which store incoming edge characters as a byte array inside the node.DefaultCharArrayNodeFactory ANodeFactorywhich creates various implementations ofNodeobjects all of which store incoming edge characters as a character array inside the node.DefaultCharSequenceNodeFactory ANodeFactorywhich creates various implementations ofNodeobjects all of which store incoming edge characters as aCharSequence(a view onto the original key) rather than copying the edge into a character array.SmartArrayBasedNodeFactory ANodeFactorywhich internally usesDefaultByteArrayNodeFactoryto create nodes by default (which can reduce memory overhead), but falls back toDefaultCharArrayNodeFactoryif characters are detected which cannot be represented as a single byte.