Package chemaxon.naming

Document to Structure conversion and Name to Structure plugins.

See:
          Description

Interface Summary
DocumentExtractor.ProgressListener  
NameConverter The interface of a converter from names to structures.
 

Class Summary
DocumentExtractor Extracts chemical names from text documents and converts them to chemical structures.
DocumentExtractor.ProgressInfo  
DocumentToStructure  
NameConverters Maintains the list of custom and built-in name-to-structures converters.
 

Exception Summary
NameFormatException A failure to convert a name to a structure.
NameFormatException.FilteredCase Exception signaling that the given input name should not be converted.
NamePrefixException This exception should be thrown by a NameConverter to indicate that even though a name cannot be converted to a structure, it is the prefix of a valid name.
 

Package chemaxon.naming Description

Document to Structure conversion and Name to Structure plugins.

Document to Structure conversion can be done using the DocumentExtractor class.

Name to Structure usage does not require this package, since it can be used as any file format import, for instance:

Molecule m = chemaxon.formats.MolImporter.importMol("benzoic acid", "name");
This package is needed to customize Name to Structure using NameConverters.