Interface IQuery
- All Known Implementing Classes:
VFQueryBuilder
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 query molecule/graph.
- Author:
- Syed Asad Rahman <asad@ebi.ac.uk>
-
Method Summary
Modifier and TypeMethodDescriptionintDeprecated.Returns edge count.intDeprecated.Returns node count.edges()Deprecated.Returns edges of the query.Deprecated.Returns an atom associated with this node.getEdge(int index) Deprecated.Returns an edge of the query mol at a given position.Deprecated.Returns an edge associated between two nodes.getNode(int index) Deprecated.Returns a node of the query mol at a given position.nodes()Deprecated.Returns nodes of the query.
-
Method Details
-
nodes
Deprecated.Returns nodes of the query.- Returns:
- node Iterable.
-
getNode
Deprecated.Returns a node of the query mol at a given position.- Parameters:
index- at position.- Returns:
- node.
-
edges
Deprecated.Returns edges of the query.- Returns:
- edge Iterable.
-
getEdge
Deprecated.Returns an edge of the query mol at a given position.- Parameters:
index- at position.- Returns:
- edge
-
getAtom
Deprecated.Returns an atom associated with this node.- Parameters:
node- get Atom of this node.- Returns:
- atom of this node
-
getEdge
Deprecated.Returns an edge associated between two nodes.- Parameters:
source- get an between source.target- and target.- Returns:
- IEdge egde between source and target.
-
countEdges
int countEdges()Deprecated.Returns edge count.- Returns:
- edge count.
-
countNodes
int countNodes()Deprecated.Returns node count.- Returns:
- node count.
-