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

com.hn.translation.Translator Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.translation;

public interface Translator {
    /**
     * 翻译
     * @param fromLang fromLang
     * @param toLang toLang
     * @param query 翻译单词
     * @return String 翻译后的内容
     * @throws Exception
     */
    String trans(LANG fromLang, LANG toLang, String query)
            throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy