Class | Description |
---|---|
DefaultByteArrayNodeFactory |
A
NodeFactory which creates Node objects which store incoming edge characters as a byte array inside
the node. |
DefaultCharArrayNodeFactory |
A
NodeFactory which creates various implementations of Node objects all of which store incoming
edge characters as a character array inside the node. |
DefaultCharSequenceNodeFactory |
A
NodeFactory which creates various implementations of Node objects all of which store incoming
edge characters as a CharSequence (a view onto the original key) rather than copying the edge into a
character array. |
SmartArrayBasedNodeFactory |
A
NodeFactory which internally uses DefaultByteArrayNodeFactory to create nodes by default (which
can reduce memory overhead), but falls back to DefaultCharArrayNodeFactory if characters are detected which
cannot be represented as a single byte. |
Copyright © 2016. All rights reserved.