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

fr.profi.mzdb.db.table.MzdbTable Maven / Gradle / Ivy

There is a newer version: 0.0.27
Show newest version
package fr.profi.mzdb.db.table;

public enum MzdbTable {

  VERSION("version"),
  CREATION_TIMESTAMP("creation_timestamp"),
  FILE_CONTENT("file_content"),
  CONTACTS("contact"),
  PARAM_TREE("param_tree");
  
  public static String tableName = "mzdb";
  private final String columnName;
  
  private MzdbTable(String colName) {
    this.columnName = colName;
  }
  
  public String getValue() {
    return columnName;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy