Package org.jmol.smiles
Class SmilesParser
java.lang.Object
org.jmol.smiles.SmilesParser
Parses a SMILES string or SMARTS pattern to create a
An example on how to use it:
SmilesSearch
.
Currently this parser supports only parts of the SMILES specification. An example on how to use it:
try {
SmilesParser sp = new SmilesParser();
SmilesSearch sm = sp.parseSmiles("CC(C)C(=O)O");
// Use the resulting SmilesSearch
} catch (InvalidSmilesException e) {
// Exception management
}
-
Method Summary