Uses of Interface
com.googlecode.concurrenttrees.radix.node.NodeFactory
Packages that use NodeFactory
Package
Description
-
Uses of NodeFactory in com.googlecode.concurrenttrees.radix
Fields in com.googlecode.concurrenttrees.radix declared as NodeFactoryConstructors in com.googlecode.concurrenttrees.radix with parameters of type NodeFactoryModifierConstructorDescriptionConcurrentRadixTree(NodeFactory nodeFactory) Creates a newConcurrentRadixTreewhich will use the givenNodeFactoryto create nodes. -
Uses of NodeFactory in com.googlecode.concurrenttrees.radix.node.concrete
Classes in com.googlecode.concurrenttrees.radix.node.concrete that implement NodeFactoryModifier and TypeClassDescriptionclassANodeFactorywhich createsNodeobjects which store incoming edge characters as a byte array inside the node.classANodeFactorywhich creates various implementations ofNodeobjects all of which store incoming edge characters as a character array inside the node.classANodeFactorywhich 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.classANodeFactorywhich 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.Fields in com.googlecode.concurrenttrees.radix.node.concrete declared as NodeFactoryModifier and TypeFieldDescription(package private) final NodeFactorySmartArrayBasedNodeFactory.byteArrayNodeFactory(package private) final NodeFactorySmartArrayBasedNodeFactory.charArrayNodeFactory -
Uses of NodeFactory in com.googlecode.concurrenttrees.radixinverted
Constructors in com.googlecode.concurrenttrees.radixinverted with parameters of type NodeFactoryModifierConstructorDescriptionConcurrentInvertedRadixTree(NodeFactory nodeFactory) Creates a newConcurrentInvertedRadixTreewhich will use the givenNodeFactoryto create nodes.ConcurrentInvertedRadixTreeImpl(NodeFactory nodeFactory) -
Uses of NodeFactory in com.googlecode.concurrenttrees.radixreversed
Constructors in com.googlecode.concurrenttrees.radixreversed with parameters of type NodeFactoryModifierConstructorDescriptionConcurrentReversedRadixTree(NodeFactory nodeFactory) Creates a newConcurrentReversedRadixTreewhich will use the givenNodeFactoryto create nodes.ConcurrentReverseRadixTreeImpl(NodeFactory nodeFactory) -
Uses of NodeFactory in com.googlecode.concurrenttrees.solver
Constructors in com.googlecode.concurrenttrees.solver with parameters of type NodeFactoryModifierConstructorDescriptionConcurrentSuffixTreeImpl(NodeFactory nodeFactory) LCSubstringSolver(NodeFactory nodeFactory) Creates a newLCSubstringSolverwhich will use the givenNodeFactoryto create nodes. -
Uses of NodeFactory in com.googlecode.concurrenttrees.suffix
Constructors in com.googlecode.concurrenttrees.suffix with parameters of type NodeFactoryModifierConstructorDescriptionConcurrentSuffixTree(NodeFactory nodeFactory) Creates a newConcurrentSuffixTreewhich will use the givenNodeFactoryto create nodes.ConcurrentSuffixTreeImpl(NodeFactory nodeFactory)