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

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

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

public enum SourceFileScanSettingsMapTable {

  SCAN_SETTINGS_ID("scan_settings_id"),
  SOURCE_FILE_ID("source_file_id");
  
  public static String tableName = "source_file_scan_settings_map";
  private final String columnName;
  
  private SourceFileScanSettingsMapTable(String colName) {
    this.columnName = colName;
  }
  
  public String getValue() {
    return columnName;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy