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

us.codecraft.webmagic.scripts.Language Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package us.codecraft.webmagic.scripts;

/**
 * @author [email protected]
 */
public enum Language {

    JavaScript("javascript","js/defines.js",""),

    JRuby("jruby","ruby/defines.rb","");

    private String engineName;

    private String defineFile;

    private String gatherFile;

    Language(String engineName, String defineFile, String gatherFile) {
        this.engineName = engineName;
        this.defineFile = defineFile;
        this.gatherFile = gatherFile;
    }

    public String getEngineName() {
        return engineName;
    }

    public String getDefineFile() {
        return defineFile;
    }

    public String getGatherFile() {
        return gatherFile;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy