Package com.googlecode.concurrenttrees.radix.node.concrete
package com.googlecode.concurrenttrees.radix.node.concrete
-
ClassesClassDescriptionA
NodeFactory
which createsNode
objects which store incoming edge characters as a byte array inside the node.ANodeFactory
which creates various implementations ofNode
objects all of which store incoming edge characters as a character array inside the node.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.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.