Package org.openscience.cdk.isomorphism
Class SmartsStereoMatch
- java.lang.Object
-
- org.openscience.cdk.isomorphism.SmartsStereoMatch
-
- All Implemented Interfaces:
Predicate<int[]>
@Deprecated public final class SmartsStereoMatch extends Object implements Predicate<int[]>
Deprecated.use QueryStereoFilterFilters SMARTS matches for those that have valid stereochemistry configuration. Note: This class is internal and will be private in future.- Author:
- John May
- Source code:
- main
- Belongs to CDK module:
- smarts
-
-
Constructor Summary
Constructors Constructor Description SmartsStereoMatch(IAtomContainer query, IAtomContainer target)
Deprecated.Create a predicate for checking mappings between a providedquery
andtarget
.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
apply(int[] ints)
Deprecated.Backwards compatible method from when we used GUAVA predicates.boolean
test(int[] mapping)
Deprecated.Is themapping
of the stereochemistry in the query preserved in the target.
-
-
-
Constructor Detail
-
SmartsStereoMatch
public SmartsStereoMatch(IAtomContainer query, IAtomContainer target)
Deprecated.Create a predicate for checking mappings between a providedquery
andtarget
.- Parameters:
query
- query containertarget
- target container
-
-
Method Detail
-
test
public boolean test(int[] mapping)
Deprecated.Is themapping
of the stereochemistry in the query preserved in the target.
-
apply
public boolean apply(int[] ints)
Deprecated.Backwards compatible method from when we used GUAVA predicates.- Parameters:
ints
- atom index bijection- Returns:
- true/false
- See Also:
test(int[])
-
-