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

com.zhuang.data.enums.DbProductNames Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.zhuang.data.enums;

public enum DbProductNames {

    MySQL("MySQL"), Oracle("Oracle"), MSSQL("SQL Server"), DB2("DB2"), Sybase("Adaptive Server Enterprise");

    private String name;

    DbProductNames(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy