Uses of Interface
org.apache.asn1.ber.TupleNode

Packages that use TupleNode
org.apache.asn1.ber Provides the codec foundation for Basic Encoding Rules based on a Tag, Length and Value (TLV) field tuples. 
 

Uses of TupleNode in org.apache.asn1.ber
 

Subinterfaces of TupleNode in org.apache.asn1.ber
 interface MutableTupleNode
          A mutable TupleNode used for building TLV Tuple trees.
 

Classes in org.apache.asn1.ber that implement TupleNode
 class DefaultMutableTupleNode
          The default mutable tuple node.
 

Methods in org.apache.asn1.ber that return TupleNode
 TupleNode TupleNode.getChildTupleNodeAt(int index)
          Gets a tuple node at an index.
 TupleNode DefaultMutableTupleNode.getChildTupleNodeAt(int index)
           
 TupleNode TupleNode.getParentTupleNode()
          Gets the parent tuple node to this node or null if a parent does not exist.
 TupleNode DefaultMutableTupleNode.getParentTupleNode()
           
static TupleNode TupleTreeDecoder.treeDecode(java.nio.ByteBuffer buf)
          Decodes a BER byte buffer into a tree of TLV tuples.
 

Methods in org.apache.asn1.ber with parameters of type TupleNode
 boolean TupleNodeVisitor.canVisit(TupleNode node)
          Checks to see if a node can be visited.
 boolean TupleEncodingVisitor.canVisit(TupleNode node)
          Checks to see if a node can be visited.
 boolean DeterminateLengthVisitor.canVisit(TupleNode node)
          Checks to see if a node can be visited.
 int TupleNode.getIndex(TupleNode node)
          Gets the index of a child if the child node if it exists.
 int DefaultMutableTupleNode.getIndex(TupleNode node)
           
 java.util.ArrayList TupleNodeVisitor.getOrder(TupleNode node, java.util.ArrayList children)
          Get the array of children to visit sequentially to determine the order of child visitations.
 java.util.ArrayList TupleEncodingVisitor.getOrder(TupleNode node, java.util.ArrayList children)
          Get the array of children to visit sequentially to determine the order of child visitations.
 java.util.ArrayList DeterminateLengthVisitor.getOrder(TupleNode node, java.util.ArrayList children)
          Get the array of children to visit sequentially to determine the order of child visitations.
 void TupleNodeVisitor.visit(TupleNode node)
          Visits a tree of tuple nodes using a specific visitation order.
 void TupleEncodingVisitor.visit(TupleNode node)
          Visits a tree of tuple nodes using a specific visitation order.
 void DeterminateLengthVisitor.visit(TupleNode node)
          Visits a tree of tuple nodes using a specific visitation order.
 void VisitorMonitor.visited(TupleNodeVisitor visitor, TupleNode node)
          Notifies that a node has been visited.
 



Copyright © 2004-2009 . All Rights Reserved.