Uses of Class
loci.formats.codec.LZWTreeNode

Packages that use LZWTreeNode
loci.formats.codec   
 

Uses of LZWTreeNode in loci.formats.codec
 

Fields in loci.formats.codec declared as LZWTreeNode
protected  LZWTreeNode[] LZWTreeNode.children
          List of up to 256 children.
 

Methods in loci.formats.codec that return LZWTreeNode
 LZWTreeNode LZWTreeNode.getChild(byte index)
          Gets this node's indexth child.
 LZWTreeNode LZWTreeNode.nodeFromString(ByteVector string)
          Gets the node for the given byte sequence, or null if none.
 

Methods in loci.formats.codec with parameters of type LZWTreeNode
 void LZWTreeNode.addChild(int index, LZWTreeNode node)
          Sets this node's indexth child to match the given node.