Uses of Class
org.openscience.cdk.isomorphism.matchers.Expr
-
Packages that use Expr Package Description org.openscience.cdk.isomorphism.matchers org.openscience.cdk.smarts -
-
Uses of Expr in org.openscience.cdk.isomorphism.matchers
Methods in org.openscience.cdk.isomorphism.matchers that return Expr Modifier and Type Method Description Expr
Expr. and(Expr expr)
Utility, combine this expression with another, using conjunction.Expr
QueryAtom. getExpression()
Get the atom-expression predicate for this query atom.Expr
QueryBond. getExpression()
Access the bond expression predicate associated with this query bond.Expr
Expr. left()
Access the left sub-expression of this atom expression being tested.Expr
Expr. negate()
Negate the expression, the expression will not return true only if the condition is not met.Expr
Expr. or(Expr expr)
Utility, combine this expression with another, using disjunction.Expr
Expr. right()
Access the right sub-expression of this atom expression being tested.Methods in org.openscience.cdk.isomorphism.matchers with parameters of type Expr Modifier and Type Method Description Expr
Expr. and(Expr expr)
Utility, combine this expression with another, using conjunction.Expr
Expr. or(Expr expr)
Utility, combine this expression with another, using disjunction.void
Expr. set(Expr expr)
Set this expression to another (shallow copy).void
QueryAtom. setExpression(Expr expr)
Set the atom-expression predicate for this query atom.void
QueryBond. setExpression(Expr expr)
Set the bond expression for this query bond.void
Expr. setLogical(Expr.Type type, Expr left, Expr right)
Set the logical value of this atom expression.Constructors in org.openscience.cdk.isomorphism.matchers with parameters of type Expr Constructor Description Expr(Expr expr)
Copy-constructor, creates a shallow copy of the provided expression.Expr(Expr.Type op, Expr left, Expr right)
Creates a logical atom expression for the specified.QueryAtom(Expr expr)
Create a new query atom with the given an expression.QueryBond(IAtom beg, IAtom end, Expr expr)
Constructs a query bond from an expression. -
Uses of Expr in org.openscience.cdk.smarts
Methods in org.openscience.cdk.smarts with parameters of type Expr Modifier and Type Method Description static String
Smarts. generateAtom(Expr expr)
Utility to generate an atom expression.static String
Smarts. generateBond(Expr expr)
Utility to generate a bond expression.
-