Package com.googlecode.concurrenttrees.radix.node.concrete
-
Class Summary Class Description DefaultByteArrayNodeFactory ANodeFactory
which createsNode
objects which store incoming edge characters as a byte array inside the node.DefaultCharArrayNodeFactory ANodeFactory
which creates various implementations ofNode
objects all of which store incoming edge characters as a character array inside the node.DefaultCharSequenceNodeFactory ANodeFactory
which creates various implementations ofNode
objects 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 ANodeFactory
which internally usesDefaultByteArrayNodeFactory
to create nodes by default (which can reduce memory overhead), but falls back toDefaultCharArrayNodeFactory
if characters are detected which cannot be represented as a single byte.