public abstract static class SuffixTree.SuffixNode extends Object implements Serializable
This class is realy stupid & delegates most work off to a SuffixTree so that it is as small (in memory-per-object terms) as possible.
Constructor and Description |
---|
SuffixTree.SuffixNode() |
Modifier and Type | Method and Description |
---|---|
abstract float |
getNumber()
Return a number (usually, but not always, a motif count)
associated with this node of the tree.
|
abstract boolean |
hasChild(int i)
Determine if this node has a child corresponding to a given
index number.
|
abstract boolean |
isTerminal()
Determine is this node is terminal (has no children).
|
abstract void |
setNumber(float n)
Set the number associated with this node.
|
public SuffixTree.SuffixNode()
public abstract boolean isTerminal()
true
if and only if this node has no children.public abstract boolean hasChild(int i)
public abstract float getNumber()
public abstract void setNumber(float n)
Copyright © 2014 BioJava. All rights reserved.