IUPAC name generator

API

Marvin provides an API so that names can also be generated from Java programs. Given a chemaxon.stuc.Molecule object m, its name can be computed by using:

String name = m.toFormat("name");

Options

It is possible to use a format option to chose a nomenclature style: For instance, to generate traditional names, use the following:
String tradionalName = m.toFormat("name:t");

General information

For general information about the IUPAC name generator, see the user documentation.