All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.actelion.research.chem.name.IStructureNameResolver Maven / Gradle / Ivy

There is a newer version: 2024.11.2
Show newest version
package com.actelion.research.chem.name;

import com.actelion.research.chem.StereoMolecule;

/**
 * Created by thomas on 7/13/17.
 */
public interface IStructureNameResolver {
	/**
	 * Local and typically quick name resolution
 	 */
	public StereoMolecule resolveLocal(String name);

	/**
	 * Typically remote server based name resolution that requires a network round trip
	 */
	public StereoMolecule resolveRemote(String name);

	/**
	 * Remote server based name resolution of multiple names packed into one network round trip
	 */
	public String[] resolveRemote(String[] nameList);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy