Interface INode

  • All Known Implementing Classes:
    NodeBuilder

    @Deprecated
    public interface INode
    Deprecated.
    SMSD has been deprecated from the CDK with a newer, more recent version of SMSD is available at http://github.com/asad/smsd.
    Interface for the Node (atomss) in graph.
    Author:
    Syed Asad Rahman <asad@ebi.ac.uk>
    Source code:
    main
    Belongs to CDK module:
    smsd
    • Method Detail

      • countNeighbors

        int countNeighbors()
        Deprecated.
        Returns Neighbors count.
        Returns:
        Neighbors count.
      • neighbors

        Iterable<INode> neighbors()
        Deprecated.
        Returns neighbors.
        Returns:
        Iterable INode.
      • getAtomMatcher

        VFAtomMatcher getAtomMatcher()
        Deprecated.
        Returns Query Atom.
        Returns:
        Query Atom.
      • getEdges

        List<IEdge> getEdges()
        Deprecated.
        Returns List of Edges.
        Returns:
        edges.
      • addEdge

        void addEdge​(EdgeBuilder edge)
        Deprecated.
        Adds edge to the edge list.
        Parameters:
        edge - add an edge.
      • addNeighbor

        void addNeighbor​(NodeBuilder node)
        Deprecated.
        Adds neighbor to the Neighbors List.
        Parameters:
        node - add a node.