Uses of Interface
org.joone.structure.Node

Packages that use Node
org.joone.structure   
 

Uses of Node in org.joone.structure
 

Classes in org.joone.structure that implement Node
 class AbstractNode
          An abstract node class, used to represent a general node type.
 class BiasNode
          A bias node.
 class ContextNode
          A context node.
 class InputNode
          An input node.
 

Fields in org.joone.structure declared as Node
protected  Node Connection.node
          The node from which this connection originates
 

Fields in org.joone.structure with type parameters of type Node
protected  java.util.List<Node> NetworkLayer.nodeList
          List of all nodes
protected  java.util.List<java.util.List<Node>> NetworkLayer.orderedNodes
          Ordered nodes
protected  java.util.List<Node> NetworkLayer.outputNodes
          List of output nodes
 

Methods in org.joone.structure that return Node
static Node NodeFactory.getGaussNode()
          Return a gauss node
static Node NodeFactory.getLinearNode()
          Return a linear node
static Node NodeFactory.getLogarithmicNode()
          Return a logarithmic node
 Node Connection.getNode()
          Retrieve the node
static Node NodeFactory.getSigmoidNode()
          Return a sigmoid node
static Node NodeFactory.getSineNode()
          Return a sine node
static Node NodeFactory.getTanhNode()
          Return a tanh node
 

Methods in org.joone.structure that return types with arguments of type Node
 java.util.List<Node> NetworkLayer.getNodeList()
          Return a list of all nodes
 java.util.List<java.util.List<Node>> NetworkLayer.getOrderedNodes()
          Return the ordered nodes
 java.util.List<Node> NetworkLayer.getOutputNodes()
          Return a list of output nodes
 

Methods in org.joone.structure with parameters of type Node
static javax.swing.tree.MutableTreeNode NodeFactory.getTreeNode(Node node)
          Given a node, return a suitable treenode description of it
 

Constructors in org.joone.structure with parameters of type Node
Connection(Node node, double weight, boolean fixed)
          Create a new connection
 



Submit Feedback to pmarrone@users.sourceforge.net