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

io.github.ashwithpoojary98.compilers.EngineCodes Maven / Gradle / Ivy

The newest version!
package io.github.ashwithpoojary98.compilers;

public enum EngineCodes {
    FIREBIRD("firebird"),
    GENERIC("generic"),
    MYSQL("mysql"),
    ORACLE("oracle"),
    POSTGRES("postgres"),
    SQLITE("sqlite"),
    SQL_SERVER("sqlsrv");

    private final String code;

    EngineCodes(String code) {
        this.code = code;
    }

    public String getCode() {
        return code;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy