Interface | Description |
---|---|
DocumentExtractor.ProgressListener | |
NameConverter |
The interface of a converter from names to structures.
|
Class | Description |
---|---|
DocumentExtractor | Deprecated
use chemaxon.formats.MolImporter or chemaxon.naming.DocumentToStructure instead.
|
DocumentExtractor.ProgressInfo | |
DocumentToStructure | |
NameConverters |
Maintains the list of custom and built-in name-to-structures converters.
|
Exception | Description |
---|---|
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. |
Document to Structure conversion can be done using the
DocumentToStructure
class
or the MolImporter
class using the "d2s" format.
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
NameConverter
s.